如何用c语言打印hello world

#include<stdio.h>

int main()

{

       printf("hello world");

        return 0;

}