Advertisement
KatarzynaBracha

wskazniki_podstawy

Oct 11th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     int x;
  9.     int *w_x;
  10.     w_x=&x;
  11.     cout <<"Podaj wartosc x:"<<endl;
  12.     cin>>*w_x; //cin>>x;
  13.     cout <<"Wartosc zapisana w zmiennej x:"<<*w_x<<endl;//odczytanie wartoœci
  14.     cout <<"Adres zmiennej x: "<<w_x<<endl;
  15.     *w_x=10;
  16.     cout <<"Wartosc zapisana w zmiennej x:"<<*w_x<<endl;//odczytanie wartoœci
  17.  
  18.  
  19.  
  20.  
  21.  
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement