Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Write A Program To Print this pattern
SUBMITTED BY:
Guest
DATE:
Oct. 12, 2013, 6:02 a.m.
FORMAT:
Text only
SIZE:
283 Bytes
Raw
Download
Tweet
HITS:
1137
Go to comments
Report
*
**
***
****
*****
___________________________________
#include<stdio.h>
#include<conio.h>
main()
{
int i,k
for (i=1;i<6;i++)
{
for (k=1;k<=i;k++)
{
printf("*");
}
printf("\n");
}
getch();
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus