Tuesday, June 11, 2013

The programs presented here illustrate best practices in C programming primer. Writing C programs helps learner to simulate other programming language that he/she may encounter in the future like C++, C#, Java and PHP.

Hello World Program

#include<stdio.h>
main()
{
printf("Hello World!\n");
getch();
}

Output of the Program:
Hello World!


0 comments :

Post a Comment