declaring variables cpp code example
Example 1: declare variable c++
#include <iostream>
using namespace std;
int main(){
int numero; //il tipo della variabile è int, il nome della variabile è 'numero'
}
Example 2: C++ variables
Create a variable called myNum of type int and assign it the value 15:
int myNum = 15;
cout << myNum;