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
Write a program to check palindrome number in c programming?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is indirection in c?
What is the size of enum in c?
What is a list in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
code for replace tabs with equivalent number of blanks
`write a program to display the recomended action depends on a color of trafic light using nested if statments
a program that can input number of records and can view it again the record
What is the code in while loop that returns the output of given code?
What does #pragma once mean?
What do you mean by Recursion Function?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
Can you tell me how to check whether a linked list is circular?
What is 1f in c?