Hello world Program in C


C programming tutorial, how to learn c language step by step, c programming examples

Following is the simple c program which prints  message "Hello World! "




Hello world Program in C






[
#include

#include


void main()

{

printf( "Hello World!");


getch();


}
]

output:

Hello World!

Post a Comment

Previous Post Next Post