Apr 26, 2003 #1 walks Technical User Joined May 7, 2001 Messages 203 Location CA Im new to Borland and was wondering if its possible to use the cin and cout like in Microsofts Visual C++
Im new to Borland and was wondering if its possible to use the cin and cout like in Microsofts Visual C++
Apr 26, 2003 #2 chipperMDW Programmer Joined Mar 24, 2002 Messages 1,268 Location US Yes. Upvote 0 Downvote
Apr 27, 2003 #3 andylec Technical User Joined Feb 2, 2002 Messages 110 Location GB Just to elaborate on chipperMDW: #include <iostream> using std::cout; using std::cin; although I'm not sure that it needed any elaboration, concise and accurate as it was. rgds Andy Upvote 0 Downvote
Just to elaborate on chipperMDW: #include <iostream> using std::cout; using std::cin; although I'm not sure that it needed any elaboration, concise and accurate as it was. rgds Andy