C预处理器不处理头文件包括#include形式。它给出了错误:没有这样的文件或目录。表单#include“header.h”中包含的文件已正确预处理。怎么解决这个问题。我正在使用命令:
cpp -P -I.PWD file.c
答案 0 :(得分:0)
#include "filename"
与#include <filename>
不同
见(What is the difference between #include <filename> and #include "filename"?)。 `
要点:#include <filename>
不会搜索.
。