Saturday, 16 June 2018

Fist program of C language.


Hello friends the first program and basic program of C language is below to print your name or hello world.

#include<stdio.h>
#include<conio.h>
Void main()
{
Clrscr();
Printf("HELLO WORLD");
Getch();
}

First two lines are header files.
Void = written for unknown value.
Main= control whole program.
Clrscr= to clear output screen.
Printf= to print on uotput screen.
Getch= to hold the output screen.
()= function.

I am using for programming of C and C++ is turboC++. If you are programmer then you know about it .
Thanks.
Like, share, follow and comment.

Most viewed