美文网首页
C hello world!

C hello world!

作者: 2010jing | 来源:发表于2016-06-15 20:53 被阅读22次

    刚刚接触C语言,都免不了第一个小程序 hello world!

    #include<stdio.h>
    int main(){
        printf("hello world!");
        return 0;
    }
    
    #include<stdio.h> 
    

    函数的使用都要进行定义和声明的!
    .h是头文件,头文件是包含函数声明和定义的文件;你平时写C语言时,用到的printf() 和scanf()都是系统定义好的,而这些函数的定义就包含在stdio.h这个文件中!
    #include是编译预处理指令,就是在编译前将stdio.h这个文件里的函数都添加到你写的c文件中,然后参与编译,生成.obj文件。
    如果没有这个指令,你用到的printf()和scanf()编辑器就会报错:

    int main()
    

    表示程序的入口函数, 返回类型是int

    printf("hello world!");
    

    简单的输出一个字符串

    return 0 / 1 / -1
    

    返回值是跟函数的返回类型相关
    0和-1使用时:
    0 一般表示成功执行
    -1一般表示不成功
    1 不清楚
    由调用方根据返回值决定不同的动作。

    相关文章

      网友评论

          本文标题:C hello world!

          本文链接:https://www.haomeiwen.com/subject/kgppdttx.html