Q. Write a C program to print the following Taj Mahal Shape pyramid as:
*
***
*****
*******
**
****
******
*******
******
****
**
*******
*****
***
*
Ans.
/*c program for Taj Mahal shape pyramid*/
#include<stdio.h>
int main()
{
*
***
*****
*******
**
****
******
*******
******
****
**
*******
*****
***
*
Ans.
/*c program for Taj Mahal shape pyramid*/
#include<stdio.h>
int main()
{
