Advertisement
Mlack

Untitled

Mar 14th, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. //int mpow(int *a, int *b);
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.     int n;
  11.     cin >> n;
  12.     int *p = &n;
  13.     int* __restrict p = &n;
  14.     int *k = NULL;
  15.     p = k;
  16.     cout << (*p) << endl;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement