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 1f in c?
What are linked lists in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain Basic concepts of C language?
What is a method in c?
what is a constant pointer in C
Why static variable is used in c?
When is a “switch” statement preferable over an “if” statement?
Explain how can type-insensitive macros be created?
How do you use a pointer to a function?
When should volatile modifier be used?
What are pointers? Why are they used?
what are non standard function in c
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What are types of preprocessor in c?