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
Where we use clrscr in c?
How do you redirect a standard stream?
What is pointer in c?
Is it better to bitshift a value than to multiply by 2?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Explain the use of 'auto' keyword in c programming?
What is null pointer constant?
Explain what happens if you free a pointer twice?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is return in c programming?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
How can a program be made to print the name of a source file where an error occurs?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What is modifier & how many types of modifiers available in c?
What is int main () in c?