Help a Newbie out

Started by
4 comments, last by Penguinzchaseme 21 years, 3 months ago
I keep getting error messages about the source code in header files in dev-c++. This restricts me from running programs that use and other header files. Does anyone know why this is happening?
When Penguins are chasing you, resistance is futile, give into their demands and they may spare you
Advertisement
are these headers that you''ve made or the standard ones? Also, how are you including them? I mean, do you do something like this:

#include <iostream.h>

or

#include <iostream>
using namespace std;

or what?
are you getting the config.h error?

if so try this

tools -> compiler option -> Directories -> C++ Includes

then browse

and search for

C:\Dev-Cpp\include\c++\mingw32

add this

and will solve the config.h problem
Nothing to do, try complimenting someone, it will make you feel better!
I use
#include <iostream>
i also tried
#include <iostream
using namespace std
When Penguins are chasing you, resistance is futile, give into their demands and they may spare you
I use
#include <iostream>
i also tried
#include <iostream>
using namespace std;
When Penguins are chasing you, resistance is futile, give into their demands and they may spare you
Thanks, the config.h thing works now
When Penguins are chasing you, resistance is futile, give into their demands and they may spare you

This topic is closed to new replies.

Advertisement