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
| Type | Keyword |
|---|---|
| Boolean | bool |
| Character | char |
| Integer | int |
| Floating point | float |
| Double floating point | double |
| Valueless | void |
| Wide character | wchar_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
Post a Comment