Gistrec

С++ ссылки и указатели

Mar 21st, 2017
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int get(int* y) {
  4.     *y = 2;
  5. }
  6.  
  7. int main() {
  8.     int x = 3;
  9.     get(&x);
  10.     printf("result: %d", x);
  11. }
  12. ---------------------------------------------------------------------------
  13. #include <stdio.h>
  14.  
  15. int get(int* y) {
  16.     *y = 2;
  17. }
  18.  
  19. int main() {
  20.     int x = 3;
  21.     int *y = &x;
  22.     get(y);
  23.     printf("result: %d", *y);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment