#include<stdio.h> #include<conio.h> void main() { clrscr(); /*for clearing the output screen*/ printf(“hello world”); /*for printing the message which is given*/ getch(); } Output: hello world
#include<stdio.h> #include<conio.h> void main() { clrscr(); /*for clearing the output screen*/ printf(“hello world”); /*for printing the message which is given*/ getch(); } Output: hello world