Answers for "in c++ what is variable ++"

C++
2

what is a variable in cpp

Variable is simply a name or a label given to a memory location.
Posted by: Guest on October-06-2021
0

C++ variables

Create a variable called myNum of type int and assign it the value 15:
  int myNum = 15;
cout << myNum;
Posted by: Guest on May-07-2021

Browse Popular Code Answers by Language