12 lines
184 B
C
12 lines
184 B
C
#include <stdio.h>
|
|
#include "function.h"
|
|
#include "display.h"
|
|
|
|
int main()
|
|
{
|
|
unsigned short int **tab2d = creatArea2D(5);
|
|
screenDisplay(tab2d, 5);
|
|
printf("main\n");
|
|
return 0;
|
|
}
|