别的

不知道放哪儿就放这里

分类 别的 下的文章

Post contains code

// Simple C program to display "Hello World"

// Header file for input output functions
#include <stdio.h>

// main function -
// where the execution of program begins
int main()
{

    // prints hello world
    printf("Hello World");

    return 0;
}

end.