代码搜索:字符型

找到约 10,000 项符合「字符型」的源代码

代码结果 10,000
www.eeworm.com/read/169348/9864869

txt 非打印字符.txt

发信人: RoachCock (chen3feng~弱智三千,我只取一个), 信区: Programming 标 题: 非打印字符 发信站: BBS 水木清华站 (Sat Mar 27 01:50:36 2004), 转信 非打印字符 有不少很有用的非打印字符,偶尔必须使用。下表显示了用来表示这些非打印字符的转 义序列: \cx 匹配由x指明的控制字符。例如, \cM 匹
www.eeworm.com/read/363342/9958255

c 字符串查找.c

#include #define MS 20 char a[MS]="whatisit"; char b[MS]="*is*"; int searchStr(char s1[MS],char s2[MS],int p1,int p2); bool chazhao(char a[MS],char b[MS]); void main() { int
www.eeworm.com/read/362396/10000652

cpp 字符串查找.cpp

//在主串s中查找字串t #include int find(char s[],char t[]); const int MAXLINE=256; int main() { char source[MAXLINE],target[MAXLINE]; cout
www.eeworm.com/read/355955/10240931

txt 字符模式设备范例.txt

/* * 声明:本范例源于书籍‘NiosII软件架构解析’ * 作者:蔡伟纲 * 博客地址: http://NiosII.cublog.cn * */ #include #include int main (void) { //将printf的内容由stdout输出; printf("This application
www.eeworm.com/read/355726/10249269

txt 字符倒序输出.txt

/////////////////////////////////////////////// // 作者:03031A班 李戬 // // // // 2003年 xx月 xx日 晚 // /////////////////////////////////////////////// #include in
www.eeworm.com/read/161314/10425469

cpp 字符串类.cpp

/*字符串类*/ #include #include using namespace std; namespace std { //自定义名字空间 const int maxlen=128; class String { private: int curlen; cha
www.eeworm.com/read/159948/10584858

txt 字符倒序输出.txt

/////////////////////////////////////////////// // 作者:03031A班 李戬 // // // // 2003年 xx月 xx日 晚 // /////////////////////////////////////////////// #include in