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");
*
**
**
**
******
Ans.
/*c program for star triangle design*/
#include<stdio.h>
int main()
{
int r,c,n;
printf("*\n");