Advertisement
SteelK

Untitled

Mar 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <cmath>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     setlocale(0, "");
  10.    
  11.     int A;
  12.  
  13.     cout << "Введите А" << endl;
  14.  
  15.     cin >> A;
  16.  
  17.     cout  << "Адрес A - " << &A <<endl;
  18.  
  19.     int *ukazatel1 = &A;
  20.  
  21.     cout << "*ukazatel1 = " << *ukazatel1 << endl;
  22.     cout << "A = " << A <<endl;
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement