NO

Author Topic: #include Errors in Pelles  (Read 3753 times)

smelf1

  • Guest
#include Errors in Pelles
« 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>

Offline Vortex

  • Member
  • *
  • Posts: 797
    • http://www.vortex.masmcode.com
Re: #include Errors in Pelles
« Reply #1 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.
Code it... That's all...

smelf1

  • Guest
Re: #include Errors in Pelles
« Reply #2 on: April 10, 2008, 12:53:04 PM »
Thanks for the reply.