Does anyone knows where I can get iostream.h, because I need the headers list.h and stack.h.
When I compile with eMbedded C++ and include list and stack, he did'nt recognize it so I downloaded STL container, but know the compiler does'nt recognize iostream.h, so I'm trying to find a place where to download this library.
If your trying to code for an embedded system, you will need a compiler that supports that Embedded OS. Typically this will come with libraries for it.
However, even an embedded device should come with iostream (no .h, thats depreciated and C, not C++).
If it doesn't then you will most likely need to goto the compiler website and search their forums. Because it may (quite likely) require a specific one just for that OS/Compiler.
List and Stack also shouldn't have the .h, .H is really a C thing and most C++ headers don't use it (e.g the STL doesn't).