I need some kowledge

Okay, so... I need to know a few C++ terms, errors, vocabulary and what they mean. An example might be...

What does "bool = true;" mean?

I use a lot of these functions when I program, but don't exactly know what they mean.

What does "bool = true;" mean?


That isn't correct syntax.
When creating variable you tel it what type it is:
bool isBad = true; bool is type
bool isBad = true; isBad is its name
bool isBad = true; true is its value that it holds

For example take a game character in some RPG:
Mage todd = fireMag; todd is a Mage that is expert in fire spells
So... Do you expect us to start randomly posting definitions of C++ terminology???

Give a Hoot... Read a Book! http://www.glenmccl.com/glos.htm
Topic archived. No new replies allowed.