C语言库puts()函数

#include <stdio.h>
#include <string.h>

int main () {
   char str1[15];
   char str2[15];

   strcpy(str1, jb51.cc);
   strcpy(str2, compileonline);

   puts(str1);
   puts(str2);

   return(0);
}

相关文章

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