Star Rectangle (Filled)

By Developgram - January 10, 2017

/*
Summary: Print rectangle pattern of stars.
*/

#include<stdio.h>

int main()
{
    int row, col, n, m;
    
    printf("Enter the number of rows: ");
    scanf("%d", &n);
    
    printf("Enter the number of columns: ");
    scanf("%d", &m);
    
    for(row=1; row<=n; row++)
    {
  for(col=1; col<=m; col++)
   printf("* ");
  printf("\n");
    }
    
    return 0;
}

  • Share:

You Might Also Like

0 comments