gpsgiraldi

2024_ponteiros_vetores_fun_with_pointers

Jun 29th, 2024
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | Source Code | 0 0
  1. /******************************************************************************
  2.  
  3. *******************************************************************************/
  4. #include <stdio.h>
  5.  
  6. int main()
  7. {
  8.     int vet[3]={1,2,3};
  9.     int *p;
  10.    
  11.     printf("%p %d",vet+1,(*vet)+1);
  12.    
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment