首页 > 代码库 > 编程题:字符串输出函数puts()

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

编程题:字符串输出函数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() - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413806