Q. Write a C program to print the following star-zero nested pattern pyramid as:
*000*000*
0*00*00*0
00*0*0*00
000***000
Ans.
How to make above star-zero nested pattern:
*000*000*
0*00*00*0
00*0*0*00
000***000
In above star-zero nested pattern, there are 4 loops(each loop have different color), so before you making above pyramid, you should make first individual each loop, after making all loop, join them.
That's done.
/*c program for star-zero nested pattern pyramid*/
#include<stdio.h>
int main()
{
*000*000*
0*00*00*0
00*0*0*00
000***000
Ans.
How to make above star-zero nested pattern:
*000*000*
0*00*00*0
00*0*0*00
000***000
In above star-zero nested pattern, there are 4 loops(each loop have different color), so before you making above pyramid, you should make first individual each loop, after making all loop, join them.
That's done.
/*c program for star-zero nested pattern pyramid*/
#include<stdio.h>
int main()
{