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