Advertisement
dllbridge

Untitled

Jul 17th, 2024
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1.  
  2.  
  3. #include<stdio.h>
  4.  
  5.  
  6. ////////////////////////////////////////////////////////////
  7. void foo(char *p)
  8. {
  9.  
  10.     p = p - 7;
  11.      
  12.     printf("%s\n", p);
  13. }
  14.  
  15.  
  16. /////////////////////////////////////////////////////////////
  17. int main()
  18. {
  19.    
  20.     char nArr[99] = "SONY_Pictures";
  21.    
  22.  
  23.     foo(&nArr[7]);
  24.  
  25.    
  26. }
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement