Showing posts with label Pattern Programming. Show all posts
Showing posts with label Pattern Programming. Show all posts

Friday, October 26, 2012

Generating Various Patterns Using Loops

Implementing m pattern using 'c'
M Pattern

Code :


main()
{
int i,j,n;
printf("Enter n:");
scanf("%d",&n);
for(i=0;i<n;i++)
{