#include <stdio.h>
int main() {
int bingo[15][15] = {0};
int A = 1;
int B = 2;
for (int i = 0; i < 15; i++)
{
for (int j = 0; j < 15; j++)
{
printf("%3d", bingo[i][j]);
}
printf("\n");
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: