17 lines
242 B
C
17 lines
242 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
const int n = 3;
|
|
//for each row
|
|
for (int row = 0; row < 10; row++)
|
|
{
|
|
//for Each Coloumn
|
|
for (int column = 0; column < 10; column++)
|
|
{
|
|
// Print on brick
|
|
printf("#");
|
|
}
|
|
printf("\n");
|
|
}
|
|
} |