C语言 HelloWorld源程序

来源:互联网 发布:公共数据保存失败 编辑:程序博客网 时间:2024/04/29 12:03
#include <stdio.h>

int main()
{
printf("HelloWorld!\n");


return 0;
}
0 0