“Hello World” in C

Darius Hanganu
Feb 14, 2023

--

To output the message Hello World in C, you can use the following code:

#include <stdio.h>

int main() {
printf("Hello World\n");

return 0;
}

I hope this was helpful. See you in the next article!

--

--