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