Wednesday, July 10, 2019

Hallow Program ( input rows and cols)

#include <stdio.h>

int main()
{
    int i, j, rows, columns;

    /* Input number of rows and columns from user */
    printf("Enter number of rows: ");
    scanf("%d", &rows);
    printf("Enter number of columns: ");
    scanf("%d", &columns);

    /* Iterate over each row */
    for(i=1; i<=rows; i++)
    {
        /* Iterate over each column */
        for(j=1; j<=columns; j++)
        {
            if(i==1 || i==rows || j==1 || j==columns)
            {
                /* Print star for 1st and last row, column */
                printf("1");
            }
            else
            {
                printf("0");
            }
        }

        /* Move to the next line */
        printf("\n");
    }

    return 0;
}

Enter number of rows: 5
Enter number of columns: 5
11111
10001
10001
10001
11111



No comments:

Post a Comment