If you take this error message from gcc compiler
-> error: unknown type name ‘bool’
Add one source code line on .c
#include <stdbool.h> |
If you take this error message from gcc compiler
-> error: unknown type name ‘bool’
Add one source code line on .c
#include <stdbool.h> |