字符串输入与输出

void test_string() { /* 一、声明字符串 数组word是常量; 指针wd是变量; 因此,只有指针能进行递增操做!!! */ char word[] = "We are here today!"; char *wd = "Where are you now?"; int i = 0; //数组遍历 while(*(word+i)
相关文章
相关标签/搜索