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 language is c written?
What oops means?
using only #include
Is anything faster than c?
What are the loops in c?
What are called c variables?
Did c have any year 2000 problems?
Explain what does a function declared as pascal do differently?
How can this be legal c?
Explain how can a program be made to print the line number where an error occurs?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What's the best way of making my program efficient?
How do you redirect a standard stream?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Write a program with dynamically allocation of variable.