我已经将stdio.h包含在我的C++项目中,为什么仍然出现此错误?另外,在我添加#include之后,在我的代码中,printf()不再用红色下划线表示存在任何错误。
另外,我想使用format()函数。在哪个库中找到?
最佳答案
您必须包含stdio.h而不是cstdio.h#include <stdio.h>
关于c++ - 'printf': identifier not found,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29886869/