learning gcc

Martin v. Loewis martin@loewis.home.cs.tu-berlin.de
Sat Jun 3 14:57:00 GMT 2000


> 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



More information about the Gcc-help mailing list