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
What do you mean by dynamic memory allocation in c? What functions are used?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Explain what is the difference between far and near ?
What are the complete rules for header file searching?
What are the 5 types of organizational structures?
Why is c so powerful?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Is it better to use a macro or a function?
What are the different properties of variable number of arguments?
What does a pointer variable always consist of?
hi any body pls give me company name interview conduct "c" language only
What is signed and unsigned?
Is null always equal to 0(zero)?