This C code print stars, which makes different patterns.
Create star triangle pattern in C by using nested for loop
Program:
#include <stdio.h>
void main()
{
int i,j,k;
for(i=1; i=i; j--)
{
printf(" ");
}
for(k=1; k
Output of program:
* *** ***** ******* *********
Another star triangle pattern in C by using nested for loop
Program:
#include <stdio.h>
void main()
{
int i, j, k;
for(i=5;i>=1;i--)
{
for(j=5;j>i;j--)
{
printf(" ");
}
for(k=1;k
Output of program:
********* ******* ***** *** *