首页 > 代码库 > C语言中的helloWorld

C语言中的helloWorld

#include <stdio.h>int main(int argc, char*argv[]){    printf("hello, world!\n");    return 0;}

 

C语言中的helloWorld