1
bool somemethod(int number){
    return true;
}

このメソッドでコードをコンパイルしようとすると、このエラーメッセージが表示され続けます

/Users/user/Desktop/test.c:14: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘somemethod’
4

2 に答える 2

6

Thing is bool isn't a true keyword in C. Include stdbool.h if you need it - this should work with C99 implementations.

于 2012-08-21T14:30:10.263 に答える