Your Only Destination To Empower Your Computer Programing Knowledge. Sky is not so high, You can Touch it if You Try

A very first Program to learn "C' language

This article is about a simple program develop in "C" Language.It is beginning of this language.
Friends,
in previous article C helpline.we were discuss about "c" structure and basic data types.Now in this article we will discuss how to write a program in this language.

write a simple program in C


//header files
#include"stdio.h"
#include"conio.h"

//User defined main function
void main()
{
//this statement for display output
printf("Hello welcome in c language");
getch();
}

Output:- It will show output by clicking Alt+F9 as given:-
Hello welcome in c language
Note:-This language is case sensitive.program is written in small letters

No comments:

Post a Comment