Advertisement
chalommm

puntero

Dec 9th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5. int  *P,J=10,a[4]={7,15,19,27},i;
  6.  
  7. P=a;
  8.  
  9. for (i=0;i<4;i++){
  10.     printf("%d \n",*(P+i));
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement