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 encapsulation in oop?
What is the problem with multiple inheritance?
What is the oops and benefits of oops programming?
Why do we use polymorphism in oops?
What is purpose of inheritance?
What is polymorphism oop?
What is super in oop?
What is encapsulation in simple terms?
What is polymorphism in oops with example?
What are the benefits of oop?
What are the three main types of variables?
what are the different types of qualifier in java?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
Why is polymorphism important in oop?
2. Give the different notations for the class.\