1
When we do a #include in the c++ language using the <> special characters where the include folder/file is?
I am compiling a program that I downloaded and this program has the following lines of code:
28 #include <libxml/xmlmemory.h>
29 #include <libxml/parser.h>
30 #include <libxml/threads.h>
And when I try to compile from the following mistake:
28 30 C:\Users\joao\Desktop\OT\Projeto OT Global\SOURCE 1.0.6\otpch.h [Error] libxml/xmlmemory.h: No such file or directory
Because then I downloaded this library and I would like to know where it is in windows so I can put it in place and correct this error.
Which IDE/compiler is using?
– stderr
I’m using the Dev-C++
– João Carlos
Have you checked in c: dev-c++ include and c: dev-c++ Lib?
– stderr
I got it, thank you very much.
– João Carlos