Showing posts with label How to print v shape pyramid in C. Show all posts
Showing posts with label How to print v shape pyramid in C. Show all posts

9.25.2014

How To Print V-Shape Pyramid In C

Q. Write a C program to print a V-Shape Pyramid as:

 *   *
  * *
   *

Ans.

/*how to print v-shape pyramid in c*/
#include<stdio.h>
int main()
{