在很多时候我们写的第一个程序就是hello word!
那么C语言的hello word也不例外:
#include <stdio.h>
int main()
{
printf("hello word!");
return 0;
}
© 版权声明
THE END
在很多时候我们写的第一个程序就是hello word!
那么C语言的hello word也不例外:
#include <stdio.h>
int main()
{
printf("hello word!");
return 0;
}
暂无评论内容