tags:

views:

18

answers:

1

My working environment is Linux, Eclipse CDT and g++ 4.4. Where can I find language and CRT functions reference for this environment? WEB, or maybe it is always installed on my computer?

+1  A: 

man "function name"

For example: man fopen, man fwrite.

dicroce
Doesn't work for me. Maybe I need to install something else? I only installed g++ using sudo apt-get install g++. In addition to man reference, is there some WEB reference, like MSDN Library for MSVC?Thank you.
Alex Farber