Computer Science, asked by mubashirayaz123, 1 month ago

How to print star on C#

Answers

Answered by Disha094
0

Print star pattern in C

#include<stdio.h>

int main()

{

int row, c, n, temp;

Answered by fatmaadamkhan025
1

Explanation:

Print star pattern in C

#include<stdio.h>

int main()

{

int row, c, n, temp;

printf("Enter the number of rows in pyramid of stars you wish to see ");

scanf("%d",&n);

temp = n;

/* Program to print star pattern */

Similar questions