words per minute
4
AmeerHamza5820
00:00
Speed
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define ROW 5
#define COLUMN 10
int main(void)
{
int Matric[ROW][COLUMN];
int x,y;
for(y=0; y<=ROW;y++){
for(x=0;x<=COLUMN;x++){
printf("%c",'\xF9');
}
printf("\n");
}
while(x>=0){
for(y=0;y<ROW;y++){
for(x=0;x<COLUMN;x++){
printf("\n\n");
}
printf("coordinates : ");
scanf("%d %d",&x,&y);
Matric[y][x] ='\xB1';
}
}
getch();
}