foo.c:3:1: error: unknown type name 'define'
define maxn 100+10
^
foo.c:3:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before numeric constant
define maxn 100+10
^
foo.c:6:7: error: 'maxn' undeclared here (not in a function)
int f[maxn][maxm];
^
foo.c:6:13: error: 'maxm' undeclared here (not in a function)
int f[maxn][maxm];
^
foo.c: In function 'main':
foo.c:15:10: error: 't' undeclared (first use in this function)
memset(t,0,sizeof(t));
^
foo.c:15:10: note: each undeclared identifier is reported only once for each function it appears in
foo.c:16:10: error: 'v' undeclared (first use in this function)
memset(v,0,sizeof(v));
^