On 2/15/07, muhammad shahid <[EMAIL PROTECTED]> wrote: > hello friends, > in programming u can use #<constream.h> in place > of both file #<iostream.h> and #<conio.h>
This makes no sense. conio.h is an old Borland header file that lets you manipulate the console. You won't find it on most modern compilers, let alone constream.h. iostream.h is also an outdated, pre-standard header. > i am using turbo c 3.0. windows XP. Turbo C is an extremely old DOS-only compiler. You should switch to a newer one that can build Windows executables, or at least adheres to the current standards. -- Tamas Marki
