01-30-06 01:42 PM
saad wrote:
> hi
> I am compiling a MS V Studio C++ compiled code on a Win Xp Intel
> centrino machine on a super computer running Intel C compiler (icc)
> through cygwin client.
> I need to know the replacements of following header files (or all the
> header files for icc unix based machine)
>
> #include <stdio.h>
> #include <stdlib.h>
> #include <math.h>
> #include <string>
These four are standard C/C++ headers and should be in place.
> #include <iostream.h>
> #include <iomanip.h>
These are depricated headers. Use <iostream> and <iomanip> instead.
> #include <conio.h>
> #include <process.h>
Not sure about these two.
[ Post a follow-up to this message ]
|