使用puts()输出字符串数组

#include <stdio.h>

int main( void ){
    char *messages[5] = { This, is, from, jb51.cc, .com. };

    for (int x=0; x<5; x++)
        puts(messages[x]);

    puts(end!);

    return 0;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...