Answers for "pointer questions c++"

C++
0

pointer questions c++

#include<iostream>
using namespace std;

int main()
{
    int x;
    cout << "Enter a number\n";
    cin >> x;
    cout << *(&x) << "\n";
    return 0;
}
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language