Write a program to print "Hello World!" on screen.

 /*This program is to print hello world in the screen*/

#include <stdio.h>

#include <conio.h>


int main()

{

printf("Hello World!\n");


getch();

return 0;

}

 https://drive.google.com/file/d/11-Pw60Y784mFFGxsd7wRLjx6eMFQpgWo/view?usp=sharing

Comments