摘要:
strchr函数与strrchr函数查找指定字符(仅能判断字符,不能是字符串)在字符串中的位置 strcpy函数与strncpy函数复制字符串 strcmp函数与stricmp函数用于按照字母表顺序来比较两个字符串的大小 strcat函数与strncat函数都是字符串连接函数 sprintf函数:把 阅读全文
摘要:
1 Action() 2 { 3 int i=0; 4 char a[6],b[5],c[5],d[6]; 5 6 // while循环赋值 7 while (i<5){ 8 a[i]=97+i; 9 i++; 10 } 11 a[5]=0; 12 lr_output_message... 阅读全文
摘要:
1 Action() 2 { 3 char *p=NULL; 4 web_reg_find("Fail=NotFound", 5 "Search=All", 6 "SaveCount=baidu_count", 7 "Text=head", 8 LAST); 9 10 web_url("w... 阅读全文