George Xavier
George Xavier

Reputation: 191

Eclipse CDT Include Folder

I am a C++ newb. I have the Eclipse Luna IDE for Windows 10 and downloaded the Eclipse C/C++ IDE CDT 9.4 plugin. I have some code which has

#include <stdio.h>

which is giving me "unresolved inclusion". Based on my research it means I do not have some include folder. I cannot find it on my Windows machine and all the help I've found is with ubuntu or Linux-based operating systems. So how do I get this to work? How do I get the folder?

Upvotes: 2

Views: 2509

Answers (1)

Mehdi
Mehdi

Reputation: 753

Go to project properties, C/C++ General -> Paths and Symbols and for Language GNU C you should see the compiler default include folders.

If not, you might have a path problem.

And i think This helps you!

Upvotes: 2

Related Questions