" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include<conio.h>
int main() {
clrscr();
gotoxy(5,3); cout<<"HELLO WORLD";
gotoxy(60,10); cout<<"HELLO WORLD";
gotoxy(35,20); cout<<"HELLO WORLD";
getch();
return 0;
}