Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Answer Posted / muthyala nagaraju
#include<stdio.h>
#include<conio.h>
main()
{
int i;
char ch='A';
for(i=65;i<=97;i++)
{
printf("%c",ch++);
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is null always equal to 0(zero)?
What is function definition in c?
What are structures and unions? State differencves between them.
What is a macro in c preprocessor?
main() { printf("hello"); fork(); }
what do you mean by inline function in C?
Explain c preprocessor?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
How many types of operators are there in c?
What is ## preprocessor operator in c?
simple program of graphics and their output display
Explain what is dynamic data structure?
State the difference between x3 and x[3].
What is declaration and definition in c?
What is the difference between test design and test case design?