C++ COURSE

C++ Variables

Learn C++ programming with EDUHUB Code Hub.

C++ Variables

Variables are containers used to store data values.

Creating Variables



int age = 17;

string name = "Navitha";

double price = 99.99;


Common Data Types

Type Example
int 10
double 10.5
char A
string Hello
bool true