搜索结果: 系统搜索到约有467917项符合char的查询结果

  • char.plg

    Build Log --------------------Configuration: CHAR - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\zhanglzu

    http://www.codebf.com/read/159827/10610750

  • char.cpp

    #include #include #include #include int main(void) { int LENGTH,I; char CHOICE; char *STRING = "This is a string"; printf("\nInput the s

    http://www.codebf.com/read/159827/10610759

  • char.dsp

    # Microsoft Developer Studio Project File - Name="CHAR" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Cons

    http://www.codebf.com/read/159827/10610768

  • char.c

    #define _CHAR_C_ // Spock +1 2000/12/6 #include #include #include #include #include #include #include "main.h" #include "char.h" #i

    http://www.codebf.com/read/351277/10663601

  • char.h

    #ifndef _CHAR_H_ #define _CHAR_H_ #include "version.h" /* 1交□扒丐凶曰及 平乓仿醒(白央奶伙醒) */ #define MAXCHAR_PER_USER 2 int isLocked( char *id ); void charLoadCallback( int ti , int auth_ok , char *c0, char

    http://www.codebf.com/read/351277/10663745

  • char.c

    #define _CHAR_C_ // Spock +1 2000/12/6 #include #include #include #include #include #include #include "main.h" #include "char.h" #i

    http://www.codebf.com/read/351276/10665870

  • char.h

    #ifndef _CHAR_H_ #define _CHAR_H_ #include "version.h" /* 1交□扒丐凶曰及 平乓仿醒(白央奶伙醒) */ #define MAXCHAR_PER_USER 2 int isLocked( char *id ); void charLoadCallback( int ti , int auth_ok , char *c0, char

    http://www.codebf.com/read/351276/10665923

  • char.m

    function s = char(p) %char(p): convert a GA object to a string. % %See also gable. % GABLE, Copyright (c) 1999, University of Amsterdam % Copying, use and development for non-commercial purposes perm

    http://www.codebf.com/read/275202/10829513

  • 12.1.2 char const12.txt

    12.1.2 char* const char* const类型定义的是一个指针常量。它的使用方法如下所示。 char ch[5]="lisi"; / char* const pStr=ch; 上述代码首先定义了一个字符数组: ch.然后利用char*const类型定义了一个指针常量:pStr。然后, 同样用字符数组给这个指针常量赋值,相当于将字符数组的首地址赋给了指针常量 ...

    http://www.codebf.com/read/418205/10959013

  • 12.1.1 const char.txt

    12.1.1 const char* const char*类型是指向常量的指针,注意此时 const所在的位置:在"*"的前面。 const在 char的 前面或后面都是一样的,但通常将 const放置在 char的前面。对一个利用 const char*类型定义的 常量指针来说,不能修改其指向的内存中的内容,但可以修改其所指向的内存地址。 const char* 类型的使用方法如下 ...

    http://www.codebf.com/read/418205/10959033