Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Borland C++ v3.1 中创建此函数,但它给了我错误“声明语法错误”。谁能帮我解决这个错误?
bool f(bool* b) { }
把它放在源文件的顶部。如果它在那之后工作,那么Borland c++根本不支持bool类型。如果没有,我不知道为什么会出现语法错误。
Borland c++
bool
typdef byte bool; #define true 1 #define false 0