Files
2026-05-28 10:16:10 +00:00

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");
}
}