C Program to Print "Hello, World!"
The following C program prints "Hello, World!" to the console.
#include → Includes the standard input-output library for using printf().
int main() → The main function where execution starts.
printf("Hello, World!\n"); → Prints "Hello, World!" to the console.
return 0; → Indicates the program executed successfully. https://docs.vultr.com/clang/examples/hello-world-program