From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Martin v. Loewis" To: efreyre@qnet.com.pe Cc: gcc-help@gcc.gnu.org Subject: Re: learning gcc Date: Sat, 03 Jun 2000 14:57:00 -0000 Message-id: <200006032153.XAA06936@loewis.home.cs.tu-berlin.de> References: X-SW-Source: 2000-06/msg00018.html > I programm in Borldanc C++, since now I am performing tasks on unix/linux > environments , I need know some variations about the sintaxis, includes > etc,, about gcc respect Borland C++, Please can anyone sendme some address > for learning gcc ? Please have a look at the GCC manual; it explains the differences between standard C++ and GNU C++. You'll have to look at Borland's documentation to understand the differences between Borland C++ and standard C++. > I would want to know aboot certain commands such as control of cursor > (e.g. gotoxy in Borland C++) Please note that gcc is only a compiler, it does not include specialized libraries. While it does provide a standard C++ library, that library does not support controlling the cursor. You have to use a library provided by the operating system (e.g. Linux) to control the cursor; the curses library is suitable for that. Regards, Martin