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 difference between class template and template class?
What are two types of polymorphism?
What is class and object in oops?
How do you achieve polymorphism?
What is the problem with multiple inheritance?
What is the renewal class?
What are the 4 pillars of oop?
Why is polymorphism important in oop?
What is class in oop with example?
What is polymorphism and its types?
What is variable example?
what is different between oops and c++
What are the benefits of oop?
Can bst contain duplicates?
What is stream in oop?