Advertisement
dllbridge

Untitled

May 20th, 2024
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5. int  n = 87;
  6. int *p = &n;
  7.  
  8. int nArr[17] = {100, 101, 102, 103};
  9.  
  10.  
  11. //////////////////////////////////////////////////////////////
  12. int main()
  13. {
  14.    
  15.     printf("%d\n", nArr[1] );
  16.     printf("%d\n", nArr[2] );  
  17. }
  18.  
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement