#include <stdio.h>
int main() {
int rows = 5;
int columns = 5;
for (int i = 1; i <= rows; i++) {
for (int j = 1; j <= columns; j++) {
// Print '*' for each position
printf("* ");
}
printf("\n");
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: