Society of Robots - Robot Forum

Software => Software => Topic started by: alpha on March 14, 2010, 08:08:15 AM

Title: C++ programming problem...
Post by: alpha on March 14, 2010, 08:08:15 AM
Hi,

I'm new to all programming and for my project I have to write a program for a firefighting robot using C++. Can anyone suggest me some good books or sites I can use to learn this?
I tried learning C++ using some books like ''C++ primer by stephen prata'' and so on. But they seems to be focused more on computer programming and i just don't understand how to use them for robots. And other books  about "robot programming" use different programming languages. Is using C++ difficult? and should I learn some other programming language? then which one would be better? pls help.... I'm confused right now...

Thanx a lot...
Title: Re: C++ programming problem...
Post by: little-c on March 14, 2010, 08:46:35 AM
www.cplusplus.com (http://www.cplusplus.com)

I use that for allmost all of my lookup of c programing on the internet.
copy pasted from my blackboard programing course.(reading uni)
References to standard libraries

http://en.wikipedia.org/wiki/C_standard_library (http://en.wikipedia.org/wiki/C_standard_library)
http://en.wikipedia.org/wiki/List_of_C_functions (http://en.wikipedia.org/wiki/List_of_C_functions)
http://www.acm.uiuc.edu/webmonkeys/book/c_guide/index.html (http://www.acm.uiuc.edu/webmonkeys/book/c_guide/index.html)
http://www.utas.edu.au/infosys/info/documentation/C/CStdLib.html (http://www.utas.edu.au/infosys/info/documentation/C/CStdLib.html)

and for C standard library functions in C++:

http://www.cppreference.com/ (http://www.cppreference.com/)


I also refer to Detial and Detail C++ How to program.