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 is this infamous null pointer, anyway?
In a byte, what is the maximum decimal number that you can accommodate?
What is a far pointer in c?
What is function in c with example?
What are the main characteristics of c language describe the structure of ac program?
What is wrong with this program statement?
Can I initialize unions?
what is a constant pointer in C
Describe explain how arrays can be passed to a user defined function
What are the disadvantages of a shell structure?
What is a wrapper function in c?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is wild pointer in c with example?
Write a program to swap two numbers without using third variable?
Is c easy to learn?