给定一个字符串数组,打印数组中的所有词。请用C++代码实现
时间: 2024-05-21 16:11:05 浏览: 92
C语言实现输入一个字符串后打印出该字符串中字符的所有排列
#include <stdio.h>
int main() {
char words[5][20] = {"hello", "world", "this", "is", "a test"};
int i, j;
for(i = 0; i < 5; i++) {
printf("%s ", words[i]);
}
printf("\n");
return 0;
}
阅读全文