Thanks for the suggestions thus far, unfortunately, the only thing I have come across has been that "hello world crap" as you put it ..
I am "green" when it comes to programming, the only thing I have right now is MS's Visual C++ toolkit, since they've offered its compiler free ...
As for C++ or .NET, I thought C++ itself would not be specific to just MS environments ?
True too, I am not a huge fan of reading, I often fall asleep reading the text from some of these online "books" on C++ ... about like I do equipping parts to cars in GT4 ^_~
The latest "book" I've found somewhat bombarded me w\ functions,real variables/literal reals,strings,operators,expressions, integers, doubles, long/short, characters,reserved words and identifiers as well as decimal,hex,binary digits, memory addresses ETC... This was in just the 1rst of 13 chapters, it used varying examples of pay rate, weekly salaries and the like in programs, to demonstrate much of the things I mentioned above ..
The first exercise then told me to write a program for a farenheit and celsius conversion result using this formula
(degree) C=5/9((degree)) F-32)
Keeping in mind that my first program was "hello world"
The odd thing is, it seems that there are more "formats"? or is that different environments? than one expects, I tried using some of the code in his example w\ the Visual C++ compiler and it caused errors, it seems that he was using a different compiler ?...
Mine expects
#include <iostream>
using namespace std;
his example:
# include <iostream.h>
I'm still determined to learn, I can say I know more than I did before, just not as much as I need .. Does anyone else have any links to some good, straightforward C++ learning resources for the beginner, hopefully w\ practical exercises ?