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


how can i get the output
54321
4321
321
21
1

in c programming........???? pls help......

Answers were Sorted based on User's Feedback



how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / jayaraj.s

#include<stdio.h>
main()
{
int a,b;
for(a=5;a!=0;a--)
{
for(b=a;b!=0;b--)
{
printf("%d",b);
}
printf("\n");
}

getch();
}

Is This Answer Correct ?    87 Yes 16 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / narasimharao

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

Is This Answer Correct ?    29 Yes 12 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / dattatreya

#include<stdio.h>
int main(){
char a[6]="54321";
char *p=a;
while(*p){
printf("%s ",p++);
}
return 0;
}

Is This Answer Correct ?    9 Yes 3 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / gohar

a
22
ccc
4444
eeeee
666666

Is This Answer Correct ?    3 Yes 4 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / code0090

for more go to
http://answerwale.co.cc/?p=22#comment-18

#include<stdio.h>
#include<conio.h>

int main()
{
int a=5;
int b=9;

while(a!=0){
for(int i=a;i>0;i--)
{
printf("%d",i);
}
printf("\n");
a--;
}
getch();
return 0;
}

Is This Answer Correct ?    7 Yes 9 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / nagulmeera

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

Is This Answer Correct ?    5 Yes 8 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / mydeen

for(i=5;i<0;i++)
{
for(j=i;j<0;j++)
{
printf("%d",&i);
}
}

Is This Answer Correct ?    4 Yes 7 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / rishabh upadhyay

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

Is This Answer Correct ?    1 Yes 4 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / aditya the future google ceo

(i=1;i<=5;i--)
{
(J=1;j<=i;j--)

Is This Answer Correct ?    1 Yes 4 No

how can i get the output 54321 4321 321 21 1 in c programming........???? pls help........

Answer / aftab rai

#include<stdio.h>
#include<conio.h>
main()
{
int i,j,n;
printf("enter numbers of lines");
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(j=0;j<=i;j++)
{printf("%d",i+1+j);}
printf("\n");
}
getch();
}

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More C Interview Questions

Why do we use c for the speed of light?

0 Answers  


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


What is methods in c?

0 Answers  


int i=0,j; j=++i + ++i ++i; printf(" %d",j);

2 Answers   ME,


Explain how can you determine the size of an allocated portion of memory?

0 Answers  


What is function and its example?

0 Answers  


A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.

2 Answers  


Can you tell me how to check whether a linked list is circular?

1 Answers  


Differentiate abs() function from fabs() function.

0 Answers  


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

0 Answers   Wilco,


How will you delete a node in DLL?

0 Answers   GrapeCity,


Was 2000 a leap year?

0 Answers  


Categories