Showing posts with label C star triangle. Show all posts
Showing posts with label C star triangle. Show all posts

8.27.2013

C Star Triangle

Q. Write a C program to make the following star triangle as:

*
**
**
**
******

Ans.

/*c program for star triangle design*/
#include<stdio.h>
int main()
{
 int r,c,n;
 printf("*\n");