answersLogoWhite

0

You declare a variable by first defining its data type and then its name followed by a semi-colon. Here is an example:

int variable;

The example above declares an uninitialized integer variable. You can initialize the variable by giving it a value such as "int variable = 1;". It is important to initialize your variables, because you can get errors when executing your program that the variable does not have a value or is uninitialized. Variables that are uninitialized have whatever garbage value happens to be when the program is executed.

Here are all of the data types that a variable can be:

*int - integer value

*char - character value

*bool - boolean value

User Avatar

Wiki User

11y ago

Still curious? Ask our experts.

Chat with our AI personalities

TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
BeauBeau
You're doing better than you think!
Chat with Beau
More answers

A variable is simply a named object whose member value(s) can be changed or mutated. Its type may be primitive such as int, char, float or double, or it may be a user-defined type such as a class, struct, union or enum. Constants are the same as variables except that their immutable member value(s) cannot be changed.

User Avatar

Wiki User

11y ago
User Avatar

A variable is a named memory location for which the contents are volatile. The antonym of variable is constant.

User Avatar

Wiki User

11y ago
User Avatar

A variable is a place to store a value that may change while the a program runs.

User Avatar

Wiki User

14y ago
User Avatar

Variables are volatile data types, as opposed to constants which are non-volatile data types.

User Avatar

Wiki User

11y ago
User Avatar

Its type, its value and its memory address.

User Avatar

Wiki User

12y ago
User Avatar

There are 5 type of variables in C++....

User Avatar

Wiki User

14y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is variable in c plus plus programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp