Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3. #include "pointer_practice.h"
  4.  
  5. int main(void)
  6. {
  7. int *av = NULL;
  8. int num_of_values = 1;
  9.  
  10. max(&num_of_values, av);
  11. printf("%d\n", *av);
  12.  
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement