使用指针数组:
#include
#include
#include
int main()
{
char *test[]={ "this is a test ", "test 2 ", " "};
int i=0;
while(strcmp(test[i], " ") != 0)
puts(test[i++]);
system( "PAUSE ");
return 0;
}
C语言并没有字符串这样的类型
是用字符数组存的。
于是
字符串数组
其实就是二维字符数组
比如
char
s[10][100];
表示10个字符串,
每个最长100个字节。
C语言字符串的学习,输入指定字符串,并且计算字符串的位数
10.3.1-C程序设计基础-字符数组与字符串