c语言之helloworld

编程必背,受益终身。

#include <stdio.h>

int main
{

printf(“hello world \n”);

return 0;
}