prog.c:1:1: error: unknown type name 'bool'
bool search(int value, int values[], int n)
^
prog.c: In function 'search':
prog.c:15:5: error: expected declaration or statement at end of input
}
^
prog.c:4:9: warning: variable 'val' set but not used [-Wunused-but-set-variable]
int val;
^
prog.c:15:5: warning: control reaches end of non-void function [-Wreturn-type]
}
^