简单教程
提交运行
代码编辑器:
/** * file: helloworld.c * author: 简单教程(www.twle.cn) */ #include <stdio.h> int main() { /* C 语言世界第一波 */ printf("Hello, World! \n"); printf("Hello 简单教程!\n"); return 0; }
运行结果: