Lessons
Courses

Printing Hello World

#include<stdio.h>#include<conio.h> void main(){ clrscr(); printf("Hello World"); getch();}