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

Is null always equal to 0(zero)?

993


What is function definition in c?

1024


What are structures and unions? State differencves between them.

1103


What is a macro in c preprocessor?

1056


main() { printf("hello"); fork(); }

1149


what do you mean by inline function in C?

1009


Explain c preprocessor?

1049


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

2030


How many types of operators are there in c?

986


What is ## preprocessor operator in c?

1026


simple program of graphics and their output display

1942


Explain what is dynamic data structure?

1118


State the difference between x3 and x[3].

1053


What is declaration and definition in c?

1017


What is the difference between test design and test case design?

2032