首页 > 代码库 > hello world

hello world

#include <stdio.h>


int main(void)

{

    printf("Hello World!\n");


    return 0;

}


hello world