Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

print the following pattern in C-Language

Tags: number row print


In this C-program we will Print the following Pattern made of numbers(1,2,3 etc). The no. of rows will be taken from the user.color>


1
2 3
4 5 6
7 8 9 10

input:

The number of rows.

output:

The Pattern will be printed on the screen in the given range.

CODE---->


#include
#include
int main()
{
int row,col,num=1,n;
printf("Enter Number of rows: ");
scanf("%d",&n);
if(n0)
{
printf("Wrong input.");
exit(0);
}
for(row=1;rown;row++)
{
for(col=1;colrow;col++)
{
printf("%d ",num);
num++;
}
printf("\n");
}
return 0;
}


Download the C-Program file of this Program.

Don't just read, run on your pc !!!color>

RESULT :color>



Enter number of rows: 3
1
2 3
4 5 6

--------------------------------
Process exited after 5.664 seconds with return value 0
Press any key to continue . . .


Images for better understanding : color>



This post first appeared on ProgramJoy.blogspot.com, please read the originial post: here

Share the post

print the following pattern in C-Language

×

Subscribe to Programjoy.blogspot.com

Get updates delivered right to your inbox!

Thank you for your subscription

×