Hello World

August 18, 2020

This is my second post on my new C Programming blog!

Oh, and here’s a great quote from this AZ Quotes on Programming.

“It’s harder to read code than to write it.” — Joel Spolsky

First C Program - Hello World

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

Output:

Hello World!

Written by Anushka Raj who likes to teach programming and work on front-end technologies. Follow me on Twitter and Instagram.