PRINT HELLO WORLD



PROGRAM-:

#include(stdio.h)        //*use < > brackets instead of ( ) these.
#include(conio.h)        //*use < > brackets instead of ( ) these.
void main();
{
clrscr();
printf("HELLO WORLD");
getch();
}


HINTS- crlscr is used to clear the previously printed program, getch is used to hold the screen because speed of program is very fast and is not visible to us.
  TO GET THE OUTPUT CLICK RUN IN TOOLBAR

Popular posts from this blog

🔁ESCAPE SEQUENCE