A B C D E F G F E D C B A
A B C D E F F E D C B A
A B C D E E D C B A
A B C D D C B A
A B C C B A
A B B A
A A
Answer Posted / karthikeyan.skcet
main()
{
int i,j,x,k,c=0;
for(i=71;i>=65;i--)
{
for(j=65; j<=i;j++)
printf("%5c",j);
if(i==70)
c=5;
for(x=1;x<=c;x++)
printf(" ");
if i==71)
for(k=i-1;k>=65;k--)
printf("%5c",k);
else
for( k=1;k>=65;k--)
print("%5c",k);
c= c+10;
printf("\n");
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Tell me when is a void pointer used?
How to implement a packet in C
Write a program with dynamically allocation of variable.
Where are c variables stored in memory?
What are keywords c?
How does #define work?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Explain what are bus errors, memory faults, and core dumps?
can anyone suggest some site name..where i can get some good data structure puzzles???
What is I ++ in c programming?
what does static variable mean?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Why shouldn’t I start variable names with underscores?
What is the significance of scope resolution operator?