how can i get output the following...
5 4 3 2 1
4 3 2 1
3 2 1
2 1
1

and

1
2 3
4 5 6
7 8 9 10
11 12 13 14 15

plz plz...

Answers were Sorted based on User's Feedback



how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and ..

Answer / aditi

For first one:-
void main ()
{
for (int i= 5; i>= 1; i--)
{
for (int k=5; k >= 1; k--)
{
if (k> i)
printf(" ");
else
printf ("%d", k);
}
printf("\n");
}
}


For second:-
void main ()
{
int n = 0;

for (int i=1; i<6; i++)
{


for (int k=1; k <= i; k++)
{
n = n +1;
printf ("%d ", n);
}
printf("\n");
}
}

Is This Answer Correct ?    12 Yes 1 No

how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and ..

Answer / abhishek karnani

void main ()
{
int i,k,j;
clrscr();
for (i=0;i<5;i++)
{

for (j=5;j>=i+1;j--)
{
printf ("%d",j);
}
printf("\n");
for (k=0;k<j+1;k++)
{
printf(" ");
}


}

}

Is This Answer Correct ?    2 Yes 1 No

how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and ..

Answer / anas

for(i=n;i>=1;i--)
{
for(c=1;c<=n-i;c++)
{
cout<<" ";
}
for(k=i;k>=1;k--)
{
cout<<k;
}
cout<<"\n";
}
----------------------------------------------
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
//for second.
int n=1;
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
{
cout<<n<<" ";
n++;
}
cout<<"\n";
}
getch();
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

how can you print&scan anything using just one character? :) HINT: printf,scanf similer

2 Answers  


What are shell structures used for?

0 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


all c language question

0 Answers   Wipro,


How does #define work?

0 Answers  






#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

0 Answers   Wilco,


How would you obtain the current time and difference between two times?

0 Answers   TISL,


How will you allocate memory to double a pointer?

1 Answers  


Why c is known as a mother language?

0 Answers  


How are variables declared in c?

0 Answers  


What ios diff. Between %e & %f?

3 Answers   Honeywell,


Explain what are the advantages and disadvantages of a heap?

0 Answers  


Categories