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
What is methods in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Can include files be nested?
Why does everyone say not to use gets?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is pointer to pointer in c?
What is a pointer and how it is initialized?
Is c procedural or object oriented?
Explain what is operator promotion?
Explain how can you determine the size of an allocated portion of memory?
List some applications of c programming language?
Difference between exit() and _exit() function?
Write a code of a general series where the next element is the sum of last k terms.
code for quick sort?
Describe the order of precedence with regards to operators in C.