| Author |
Unix specific C++ header files for Intel C compiler
|
|
|
| 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>
#include <iostream.h>
#include <conio.h>
#include <process.h>
#include <iomanip.h>
thanks in advance
saad
| |
| Maxim Yegorushkin 2006-01-30, 8:42 am |
|
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.
| |
|
| can anyone tell 32 headers found in section 17.4.1.2 of C++ standard?
| |
|
|
|
|