Wednesday, February 3, 2021

 #include <stdio.h>

int main()
{
    int no_of_rowsrowcolumn;
    printf("enter the number of rows\n");
    scanf("%d", &no_of_rows);
    for (row = 1row <= no_of_rowsrow++)
    {
        for (column = 1column <= rowcolumn++)
        {
            printf("* ");
        }
        printf("\n");
    }

    return 0;
}

No comments:

Software scope

 In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...

Popular Posts