C example program for hello world

This is an example C program which prints "Hello world!"
#include <stdio.h> int main () { printf ("Hello world!\n"); return 0; }
The output of the example looks like this:
Hello world!
Copyright © Ben Bullock 2009-2024. All
rights reserved.
For comments, questions, and corrections, please email
Ben Bullock
(benkasminbullock@gmail.com).
/
Privacy /
Disclaimer