Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?

Answer Posted / muthyala nagaraju

#include<stdio.h>
#include<conio.h>
main()
{
int i;
char ch='A';
for(i=65;i<=97;i++)
{
printf("%c",ch++);
}
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is methods in c?

1142


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

2176


Can include files be nested?

1157


Why does everyone say not to use gets?

1199


Why isn't any of this standardized in c? Any real program has to do some of these things.

1266


What is pointer to pointer in c?

1152


What is a pointer and how it is initialized?

1231


Is c procedural or object oriented?

1086


Explain what is operator promotion?

1148


Explain how can you determine the size of an allocated portion of memory?

1150


List some applications of c programming language?

998


Difference between exit() and _exit() function?

1177


Write a code of a general series where the next element is the sum of last k terms.

1092


code for quick sort?

2084


Describe the order of precedence with regards to operators in C.

1100