编程题:字符串输出函数puts()

#include<stdio.h>

void main()

{char str1[]="student",str2[]="teacher";

  puts(str1);puts(str2);

   printf("%s",str1);

   printf("%s\n%s\n",str1,str2);

}

编程题:字符串输出函数puts()  _c语言