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 / 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

What is nested structure in c?

1068


Is c still relevant?

1087


Can you please explain the difference between malloc() and calloc() function?

1123


Explain what is the heap?

1058


What is the acronym for ansi?

1051


What are the 5 organizational structures?

1027


Explain goto?

1158


What are external variables in c?

1107


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

1163


int i=10; printf("%d %d %d", i, i=20, i);

1625


Do you know what are bitwise shift operators in c programming?

1105


What is action and transformation in spark?

1165


Write a program to identify if a given binary tree is balanced or not.

1164


Explain what is the benefit of using an enum rather than a #define constant?

1222


Why c is a mother language?

1040