c语言hello world开始

来源:互联网 发布:网络运维 英文缩写 编辑:程序博客网 时间:2024/05/17 06:42

//包含头文件

#include <stdio.h>

//C语言入口

int main(void)

{

        printf("hello world!\n");


        return 0;

}


gcc XX.c -o hello


bogon:1st$ ./hello 

hello world!



原创粉丝点击