Q. Write a C program to print the following number rhombus pattern as:
********
***22***
**2222**
*222222*
22222222
*222222*
**2222**
***22***
********
Ans.
/* c program for number rhombus pattern source code*/
#include<stdio.h>
int main()
{
********
***22***
**2222**
*222222*
22222222
*222222*
**2222**
***22***
********
Ans.
/* c program for number rhombus pattern source code*/
#include<stdio.h>
int main()
{