write a program to draw a star
Answers
Answered by
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