Showing posts with label T shape character pyramid. Show all posts
Showing posts with label T shape character pyramid. Show all posts

1.31.2016

T Shape Character Pyramid

Q. Write a C program to make T shape character pattern design as:

         DCBABCD
          CBABC
           BAB
            A

Ans.

/*c source code for T shape pyramid pattern program*/
#include<stdio.h>
int main()
{