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 polymorphism what are the different types of polymorphism?
Write a program to reverse a string using recursive function?
What is class and object in oops?
What is polymorphism what is it for and how is it used?
Is html an oop?
What is the advantage of oop over procedural language?
What are the advantages of polymorphism?
What is abstraction in oop with example?
What is a function in oop?
Write a program to sort the number with different sorts in one program ??
What makes a language oop?
How do you answer polymorphism?
What is overloading and its types?
What is overriding in oops?
What is polymorphism and its types?