prog.c:1:1: error: unknown type name 'bool'
bool search(int value, int values[], int n)
^
prog.c: In function 'search':
prog.c:9:20: error: 'true' undeclared (first use in this function)
return true;
^
prog.c:9:20: note: each undeclared identifier is reported only once for each function it appears in
prog.c:13:20: error: 'false' undeclared (first use in this function)
return false;
^
prog.c:17:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^