I want to become proficent in solving a pattern program in c langauge. I am just starting, are there any special trick to get into this ? I want to go from easy to difficult , which pattern should I start with?
This is my template for pattern
**********
**********
**********
**********
**********
**********
**********
**********
**********
**********
This is my template for pattern
C:
#include <stdio.h>
int main ()
{
int i, j = 0;
for ( i = 0; i < 10; i++)
{
for ( j = 0; j < 10; j++)
{
printf ("*");
}
printf("\n");
}
return 0;
}
**********
**********
**********
**********
**********
**********
**********
**********
**********