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
What is class and object in oops?
What is an interface in oop?
How to improve object oriented design skills?
What is overloading and its types?
What are the components of marker interface?
What is cohesion in oop?
write a programe to calculate the simple intrest and compund intrest using by function overlading
What is the main purpose of inheritance law?
why reinterpret cast is considered dangerous?
What is abstract class in oop?
What is polymorphism explain its types?
write a C++ program for booking using constructor and destructor.
What is polymorphism in oops with example?
Which method cannot be overridden?
What is object in oop with example?