Dev-C++ Problem

Status
Not open for further replies.

toxicity_27

The Angriest of Amoebas
Messages
1,255
Location
Minnesota
Dev-C++ doesn't recognice <stdio.h> The book that I am reading tells me to put <stdio.h> right after #include. For some reason, when I try to compile it, it errors, even when I follow everything the book says. The book is C for Dummies Volume 1. Anyone have any ideas what's going on?
 
first off, if your book is telling you to use <stdio.h> and not <stdio> then you need to get a more up to date book....You might want to check if the .h file is in the include path or try taking out the .h part....
 
Compilers differ as well so you would need to do a little research if you have those sort of problems. Just google or go on their website and check to see what name they use. It could also be #include <cstdio> so give that a try.
 
Status
Not open for further replies.
Back
Top Bottom