C++: Variable Flashcards
1
Q
A variable is simply a name that represents a particular piece of your computer’s memory that has
A
been set aside for you to store, retrieve, and use data.
2
Q
Data types in C++
A
int: integer numbers
double: floating-point numbers
char: individual characters
string: a sequence of characters
bool: true/false values
3
Q
there is something called cin
A
that’s used for input!