3

Only Legends can understand

Beginners................

for(int i=0; i<=5;i++)
{
for(int j=0; j<=i; j++)
{
printf("*");
}
printf("\n");
}

Legends.....................

printf("*");
printf("**");
printf("***");
printf("****");
printf("*****");

Comments
Add Comment