Help?

Could someone explain the third page of the tutorials (Variables and types) to me as if I was an idiot
Please ask the doubts you have or thing which you are not understand.

:)
I need help specifically in the fundamental data types category :)
closed account (48T7M4Gy)
These are the basic types of data you can store and process as variables (names) using C++ without having to make special storage arrangements.

Later on you can define your own (personalised) types of more complex data arrangements using structures and classes/objects. This gives you much more power and flexibility in your programs.

The basic types get you started, but still enable you to go a fairly long way.
Last edited on
> I need help specifically in the fundamental data types category :)

You need to understand and use only these fundamental types in your first few programs:

Use bool to represent either true or false
Use char to represent a single character from the basic character set: 'A', 'b', '7' etc.
Use int to represent a whole number 67, -3, 0 etc.
Use double to represent an approximation for a real number 67.43, -32.1 etc.

You can safely ignore the rest of the fundamental types for now; after you have written a few programs, you can come back and have a look at the other fundamental types.
Last edited on
Thank you everybody!!! :}
Topic archived. No new replies allowed.