Q. Write a C program to make the following number hash symbol pyramid C program as:
1 # 3 # 5
1 # 3 #
1 # 3
1 #
1
Ans.
/*c program for number hash symbol pyramid*/
#include<stdio.h>
int main()
{
1 # 3 # 5
1 # 3 #
1 # 3
1 #
1
Ans.
/*c program for number hash symbol pyramid*/
#include<stdio.h>
int main()
{


