Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Program to print 0 to 9 in cross order

Answer Posted / aakash dang

#include<iostream.h>
#include<conio.h>

void main()
{
int x,y;
x=1,y=1;

for(int i=0;i<=9;i++)
{
cout<<i;
gotoxy(x,y);
x++;
y++;
}
getch();
}

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is class and object in oops?

1213


What is an interface in oop?

1091


How to improve object oriented design skills?

1066


What is overloading and its types?

1249


What are the components of marker interface?

1108


What is cohesion in oop?

1112


write a programe to calculate the simple intrest and compund intrest using by function overlading

2260


What is the main purpose of inheritance law?

1248


why reinterpret cast is considered dangerous?

2450


What is abstract class in oop?

1065


What is polymorphism explain its types?

1218


write a C++ program for booking using constructor and destructor.

2595


What is polymorphism in oops with example?

1107


Which method cannot be overridden?

1173


What is object in oop with example?

1304