Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Answer Posted / subhammondal551
#include<stdio.h>
#include<conio.h>
void main()
{
int i,sum=65;
clrscr();
printf("*");
for(i=1;i<=26;i++)
{
sum=sum+1;
printf("%c",sum);
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is default value of global variable in c?
Why double pointer is used in c?
difference between Low, Middle, High Level languages in c ?
How can I trap or ignore keyboard interrupts like control-c?
how to introdu5ce my self in serco
Explain how do you sort filenames in a directory?
What is the function of multilevel pointer in c?
What does 3 periods mean in texting?
In C, What is the #line used for?
What is stack in c?
Explain is it valid to address one element beyond the end of an array?
What is the difference between far and near ?
What are the rules for identifiers in c?
How can I run c program?
What is the need of structure in c?