c语言怎么定义字符串数组?

2024-11-22 17:01:11
推荐回答(4个)
回答1:

使用指针数组:
#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;
}

回答2:

C语言并没有字符串这样的类型
是用字符数组存的。
于是
字符串数组
其实就是二维字符数组
比如
char
s[10][100];
表示10个字符串,
每个最长100个字节。

回答3:

C语言字符串的学习,输入指定字符串,并且计算字符串的位数

回答4:

10.3.1-C程序设计基础-字符数组与字符串