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

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

By September 18, 2012 February 5th, 2018 7 Comments
* * * * * *
* * * * * *
* * * * * *
* * * * * *
* * * * * *
#include<stdio.h>
#include<conio.h>  
main()
{
	int i,j,n;
	clrscr();
	printf("Enter number : ");
	scanf("%d",&n);
	for(i=1;i<=n;i++)
	{
		for(j=1;j<=n;j++)
			{
			 printf("*");
			}
		printf("\n");
	}
	getch();
}



7 Comments

Leave a Reply

DEMO01