I have a code including
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
And it works with MinGW under XP.
I want to compile the same code under Suse linux,
but compiler said that for example:
atof(), error() functions are not defined.
The problem solved if I include
#include <stdio.h>
#include <stdlib.h>
also, but I don't understand!
The packages are different under XP and linux?
I want a platform independent code.