Answer Posted / kalyan chukka
#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j;
clrscr();
for(i=0;i<=9;i++)
{
for(j=1;j<=i;j++)
{
printf(" ");
}
printf("%d\n ",i);
}
getch();
}
Check in windows Environment
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
what is the drawback of classical methods in oops?
What is overloading in oop?
What is the purpose of polymorphism?
What is a class oop?
What is encapsulation in ict?
Why do we use class?
What is the use of oops?
Why is object oriented programming so hard?
Is this job good for future? can do this job post grduate student?
How to call a non virtual function in the derived class by using base class pointer
Can we create object of interface?
Can private class be inherited?
Is react oop?
What are the 3 pillars of oop?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?