标签:c
//打印 hello world //标准的输入输出 #include <stdio.h> int main(int argc, const char * argv[]) { //printf 函数 printf("hello world!\n"); return 0; }
C语言打印 hello world
原文地址:http://13413367.blog.51cto.com/13403367/1973880