NOTE :
// indicates comments.This wont get printed in the output.This is used for for documentation purpose.
PROGRAM:
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr(); //ClearScreen
printf("Hello C"); //Printing on screen
getch(); // Holds the output screen untill we press a key
}
OUTPUT :
// indicates comments.This wont get printed in the output.This is used for for documentation purpose.
PROGRAM:
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr(); //ClearScreen
printf("Hello C"); //Printing on screen
getch(); // Holds the output screen untill we press a key
}
OUTPUT :


0 comments: