unix programming guide

can anyone point me to a good unix programming guide?
or is it the same as coding c++ on windows. Thanks!
Pretty much C++ is C++; however, the APIs that are availablel to the Windows programmer are probably not available to the UNIX programmer. In UNIX/LINUX systems you have to use something like X-Windows or fltk for graphical programs.

This is a good book for a beginner and its FREE. :)

http://www.advancedlinuxprogramming.com/
closed account (S6k9GNh0)
POSIX generally has some sort of API available on most platforms. Cygwin and POSIX compatibility layer for Windows both provide POSIX to Windows although they require additional libraries and are probably a tad slower (if not the same) than WinAPI.

Although be very careful when using POSIX as it can contain some (very) naughty things.
Last edited on
the http://www.tldp.org is your friend.

My friend, Google is my C++programming guide ;)
Topic archived. No new replies allowed.