Advertisement
SteelK

Untitled

Apr 16th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. using namespace std;
  5.  
  6. void test (int *a)
  7. {
  8.     *a = (*a)+(*a);
  9. }
  10.  
  11. int main()
  12. {
  13.     setlocale(0, "");
  14.    
  15.     cout << "Введите число - ";
  16.     int a;
  17.     cin >> a;
  18.     test (&a); // & - адрес переменной
  19.     cout << "Теперь a = " << a << endl;
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement