fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a = 10;
  6. cout << a << endl; // The RValue of a integer variable
  7. cout << &a << endl; // The LValue of a integer variable
  8. }
Success #stdin #stdout 0s 4292KB
stdin
Standard input is empty
stdout
10
0x7fff4a43ebf4