Learn C ProgrammingLearn ProgrammingLoop Control StructuresPrograms On For Loop-Pattern ProgrammingResources

046. Write a program to print following outputs in C language

By September 18, 2012 February 5th, 2018 No Comments
1
11
121
1231
12341
123451

#include<stdio.h>
#include<conio.h>  
main()
{
	int i,j,n;
	clrscr();
	printf("Enter number...");
	scanf("%d",&n);
	for(i=0;i<=n;i++)
	{
		for(j=1;j<=i;j++)
		{
			printf("%d",j);
		}
		printf("1\n");
	}
	getch();
}

Leave a Reply

DEMO01