Computer Science, asked by rajkhan195, 2 months ago

write a program to draw a star

Answers

Answered by veeraswamy708
0

Answer:

Square Star Pattern

#include <stdio.h>

int main()

{

int n;

printf("Enter the number of rows");

scanf("%d",&n);

for(int i=0;i<n;i++)

I hope it May helpful to you ...

Similar questions