BEGINNING PROGRAMMING WITH C++

 BEGINNING PROGRAMMING WITH C++

This blog contains notes on programming with C++. A good book to get (z-lib.org) is Introduction to C++ Programming Concepts and Applications by John Keyser.

BUILT-IN DATA TYPES IN C++

See https://www.tutorialspoint.com/cplusplus/cpp_data_types.htm

 Seven basic C++ data types

TypeKeyword
Booleanbool
Characterchar
Integerint
Floating pointfloat
Double floating pointdouble
Valuelessvoid
Wide characterwchar_t    
The 3 basic Boolean operations— and , or , and not —can be combined to make more complex logical operations. The order of precedence in the way that these logical operators are evaluated are:  not first, then and , and then or .

Comments

Popular posts from this blog

C++ IDEs for Ubuntu Linux