第一课,hello C

来源:互联网 发布:游戏编程看什么算法书 编辑:程序博客网 时间:2024/06/07 11:07

#include<stdio.h>

int main(){

printf("hello,C\n");

return 0;

}