编写一段代码,使之输出hello world!
成功打印出hello world!
#include
int main()
{
printf("%s\n", "hello world!");// %s用来输出一个字符串
return 0;
}
欢迎分享,转载请注明来源:内存溢出
编写一段代码,使之输出hello world!
成功打印出hello world!
#include
int main()
{
printf("%s\n", "hello world!");// %s用来输出一个字符串
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)