@@ -0,0 +1,17 @@
#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");
The note is not visible to the blocked user.