0
I'm kinda confused with the "variables"in c++ can anyone of y'all explain it to me
I'm new to programming
2 Answers
+ 1
A variable is a "container" for storing values for example
Int a, b, c;
a = 1;
b = 2;
c = 3;
Here a,b,c are the containers
Hope you understand :)