Q. Write a nested single symbol pyramid C program as:
#
#
##
##
###
###
####
####
Ans.
/*c program for nested single symbol pyramid*/
#include<stdio.h>
int main()
{
int num,r,c,z;
printf("Enter Maximum Loop Repeat Number: ");
scanf("%d", &num);
#
#
##
##
###
###
####
####
Ans.
/*c program for nested single symbol pyramid*/
#include<stdio.h>
int main()
{
int num,r,c,z;
printf("Enter Maximum Loop Repeat Number: ");
scanf("%d", &num);