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...

Tell me a C program to display the following Output?
1 1 1 1 1
2 2 2 2
3 3 3
4 4
5

Answer Posted / deepti

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

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c is a high level language?

1128


Give basis knowledge of web designing ...

1981


What extern c means?

931


What is the difference between ā€˜g’ and ā€œgā€ in C?

3911


What is the stack in c?

1082


When a c file is executed there are many files that are automatically opened what are they files?

1037


What is meant by preprocessor in c?

948


What are the types of i/o functions?

1252


How will you declare an array of three function pointers where each function receives two ints and returns a float?

1292


How arrays can be passed to a user defined function

966


What is the use of getchar() function?

1074


Define Spanning-Tree Protocol (STP)

1071


Sir i need notes for structure,functions,pointers in c language can you help me please

2350


What is the use of pointers in C?

1024


Write a program to print factorial of given number without using recursion?

951