第一节:hello word 

    #include <stdio.h> /* 引入标准输入输出库*/

    /*入口函数*/

    main{}

    {

    /*在屏幕上打印出"hello world"*/

    printf{"hello world"};

    }