Pelles C forum

C language => Beginner questions => Topic started by: smelf1 on April 09, 2008, 05:05:41 PM

Title: #include Errors in Pelles
Post by: smelf1 on April 09, 2008, 05:05:41 PM
Hi all,

Trying to learn C atm and still quite crap at it.
Every time i try to use the includes below i get an error stating it cannot find them.

Anyone know why or how to fix this?

#include <iostream.h>      
#include <iomanip.h>
Title: Re: #include Errors in Pelles
Post by: Vortex on April 09, 2008, 08:29:02 PM
Both of them are C++ header files. Pelle's development tool set supports only the C language.
Title: Re: #include Errors in Pelles
Post by: smelf1 on April 10, 2008, 12:53:04 PM
Thanks for the reply.