We Post only the Best Stuff

Hello World Program in C Language

In this post we shall be dealing with Hello World program - The Most Popular and simplest and basic program of C Language. So the oding of Program goes like this

"Hello World" Program in C Language


#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
printf("Hello World");
getch();
}

The above program will print "Hello World" on your Computer screen

Another Example:

#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
printf("Hey Friends! This is TechJatt ready to help you in learn the basics of C Language Programming");
getch();
}

The above coing will print "Hey Friends! This is TechJatt ready to help you in learn the basics of C Language Programming" on your computer screen.

Next Post »» Division of two numbers in C Language


For further Knowledge and Tutorial Keep Visiting :-
TechJatt - The source for all kind of Tutorial on Ethical Hacking

Like Us on Facebook or Follow on Twitter or Add to Circles on Google + to remain updated
Support : Contact Us | Privacy Policy | Site Map
Copyright © 2013. Tech Jatt - All Rights Reserved
Site Design by Nitin Kundu Licensed to Tech Jatt
Proudly powered by Blogger