create a C program that displays one z,two y's,three x's
until twenty six A's.
plzz answer i need it tomorrow.
Answer Posted / d14bbl0
#include<stdio.h>
int main(){
int i,count;
for (i=0;i<26;i++){
for (count = 0;count<i;count++){
printf("%c",(char)('Z'-i));
}
}
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What are local variables c?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Differentiate between null and void pointers.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is const volatile variable in c?
What is difference between union All statement and Union?
Differentiate between new and malloc(), delete and free() ?
What is typedef struct in c?
Can one function call another?
What are data types in c language?
Write the Program to reverse a string using pointers.
How do I convert a string to all upper or lower case?
Write a program to use switch statement.
What are the 5 types of organizational structures?