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


Please Help Members By Posting Answers For Below Questions

Why n++ execute faster than n+1 ?

1865


How do you search data in a data file using random access method?

844


How does free() know explain how much memory to release?

625


What are the types of operators in c?

622


swap 2 numbers without using third variable?

668






Mention four important string handling functions in c languages .

636


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

1662


What is n in c?

585


what value is returned to operating system after program execution?

1608


What is ## preprocessor operator in c?

620


Differentiate abs() function from fabs() function.

611


find out largest elemant of diagonalmatrix

1653


What is wrong in this statement? scanf(ā€œ%dā€,whatnumber);

733


When should I declare a function?

632


What is a stream water?

663