Showing posts with label c pyramid programs. Show all posts
Showing posts with label c pyramid programs. Show all posts

8.13.2016

Number Hash Symbol Pryamid

Q. Write a C program to make the following number hash symbol pyramid C program as:

     1 # 3 # 5
     1 #
     1 # 3
     1 #
     1

Ans.

/*c program for number hash symbol pyramid*/
#include<stdio.h>
int main()
{