Posts

Showing posts from May, 2016

Hello World

Print message on screen - First C Program /* Hello World program */ #include<stdio.h> main() { printf("Hello World"); }