Enter your email address:


Monday, September 2, 2013

Home » , » WAP to print the triangle of letters in increasing order of lines.

WAP to print the triangle of letters in increasing order of lines.

Questions: Top-30-c-programs-asked-in-interview_6304.html

26.WAP to print the triangle of letters in increasing order of lines.

#include
#include
void main()
{
int i,j,k;
char ch;
printf("\n Enter the number of lines wants to make the triangle \n:");
scanf("%d" ,&i);
for(j=1;j
{
ch=65;
for(k=1;k
{
printf("%c ",ch++);
}
printf("\n ");
}
getch();
}
Share this games :

0 comments:

Post a Comment

Related Posts