BASICS OF C LANGUAGE
A place where one could learn step by step about C language and gradually become a good programmer.
YOUR FIRST BASIC C PROGRAM
YOUR FIRST BASIC C PROGRAM
AIM- TO PRINT
" HELLO WORLD "
#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr ( );
printf("HELLO WORLD");
getch( );
}
OUTPUT
- HELLO WORLD
No comments:
Post a Comment
Home
Subscribe to:
Posts (Atom)
No comments:
Post a Comment