Printing ABC by For Loops...Pyramid
main()
{
int a,b;
clrscr();
for(a=71;a>65;a--)
{
for(b=65;b
{
printf("%c",b);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment