netx_iit

hello world

Jul 16th, 2020 (edited)
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. /*stdio= standard Input Output header file
  2. conio = console Input Output header file */
  3. #include<stdio.h>
  4. #include<conio.h>
  5. void main()
  6. {
  7.     clrscr();  //clear screen
  8.     printf("\n\n\nHello World");
  9.     getch();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment