#include <stdio.h>
int main( void ){
char *messages[5] = { "This", "is", "from", "yiibai", ".com." };
for (int x=0; x<5; x++)
puts(messages[x]);
puts("end!");
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266634.html