Skip to Content
C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library
book

C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library

by Mikael Olsson
March 2018
Intermediate to advanced content levelIntermediate to advanced
183 pages
2h 34m
English
Apress
Content preview from C++17 Quick Syntax Reference: A Pocket Guide to the Language, APIs and Library
© Mikael Olsson 2018
Mikael OlssonC++17 Quick Syntax Referencehttps://doi.org/10.1007/978-1-4842-3600-0_3

3. Variables

Mikael Olsson1 
(1)
Hammarland, Finland
 

Variables are used for storing data in memory during program execution.

Data Types

Depending on the type of data you need to store, there are several kinds of built-in data types. These are often called fundamental data types or primitives. The integer (whole number) types are short, int , long, and long long. The float, double, and long double types are floating-point (real number) types. The char type holds a single character and the bool type contains either a true or false value.

Data Type

Size (Byte)

Description

char

1

Integer or character

short

2

 

int

4

Integer

long

4 or 8

 

long long

8

 

float

4

 

double ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C++20 Quick Syntax Reference: A Pocket Guide to the Language, APIs, and Library

C++20 Quick Syntax Reference: A Pocket Guide to the Language, APIs, and Library

Mikael Olsson
C++ Standard Library Quick Reference

C++ Standard Library Quick Reference

Peter Van Weert, Marc Gregoire

Publisher Resources

ISBN: 9781484236000Purchase LinkPublisher Website