pointer questions c 2b 2b

Solutions on MaxInterview for pointer questions c 2b 2b by the best coders in the world

showing results for - "pointer questions c 2b 2b"
Valentina
19 Mar 2017
1#include<iostream>
2using namespace std;
3
4int main()
5{
6    int x;
7    cout << "Enter a number\n";
8    cin >> x;
9    cout << *(&x) << "\n";
10    return 0;
11}									
12