Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

12345
1234
123
12
1

Answer Posted / malik

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
for(i=5;i>=0;i--)
{
for(j=1;j<=i;j++)
{
printf("%d", j);
}
printf("\n");
}

getch();
}

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is unary operator?

1178


Linked lists -- can you tell me how to check whether a linked list is circular?

1133


What is pass by value in c?

1134


What are the types of pointers?

1189


Explain what is the concatenation operator?

1233


What is an identifier?

1087


What is %s and %d in c?

1107


write a progrmm in c language take user interface generate table using for loop?

2103


Are negative numbers true in c?

1112


How to Throw some light on the splay trees?

1104


Why main function is special give two reasons?

1605


What is adt in c programming?

1225


What is the c value paradox and how is it explained?

1107


What is difference between class and structure?

1160


Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix

2069