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 ?    86 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 ?    28 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 ?    8 Yes 3 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 ?    6 Yes 8 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 ?    2 Yes 4 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 / 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 ?    4 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 ?    3 Yes 7 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 ?    0 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 c is called object oriented language?

0 Answers  


Differentiate between Macro and ordinary definition.

0 Answers   Motorola,


Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.

4 Answers  


write c program without semicolon

11 Answers   MindTech, TCS, Wipro,


How can we open a file in Binary mode and Text mode?what is the difference?

1 Answers   PanTerra,






main() { printf(5+"Vidyarthi Computers"); }

6 Answers  


Can true be a variable name in c?

0 Answers  


write a program to print largest number of each row of a 2D array

0 Answers  


WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


Who had beaten up hooligan "CHAKULI" in his early college days?

1 Answers  


What is include directive in c?

0 Answers  


what is the size of an integer variable?

4 Answers  


Categories