Write a helloworld in c language

Here is a simple "Hello World!" program written in C:

#include <stdio.h>
int main(void)
{
    printf("Hello World!\n");
    return 0;
}

Please input the above code into the compiler and run the program to output "Hello World!".

Guess you like

Origin blog.csdn.net/weixin_35755188/article/details/129514935