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 nested structure in c?
Is c still relevant?
Can you please explain the difference between malloc() and calloc() function?
Explain what is the heap?
What is the acronym for ansi?
What are the 5 organizational structures?
Explain goto?
What are external variables in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
int i=10; printf("%d %d %d", i, i=20, i);
Do you know what are bitwise shift operators in c programming?
What is action and transformation in spark?
Write a program to identify if a given binary tree is balanced or not.
Explain what is the benefit of using an enum rather than a #define constant?
Why c is a mother language?