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 structure pointer in c?

1002


Is array name a pointer?

1005


What are types of structure?

1072


What do you mean by dynamic memory allocation in c? What functions are used?

1126


Explain #pragma statements.

988


what is the different bitween abap and abap-hr?

2240


What is %s and %d in c?

987


What is 'bus error'?

1106


What is the difference between Printf(..) and sprint(...) ?

1451


Explain what is the use of a semicolon (;) at the end of every program statement?

1194


What is the benefit of using #define to declare a constant?

1061


Discuss the function of conditional operator, size of operator and comma operator with examples.

1116


Is it possible to have a function as a parameter in another function?

1045


write a program in c language to print your bio-data on the screen by using functions.

6748


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

1993