SHARE
TWEET

Untitled

a guest Oct 12th, 2015 75 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.         void * p = (void *)0x1045a910;
  5.         *p = 5;
  6.         printf("My memory address is %p\n", p);
  7.         printf("My Value for pointer is %d\n", *p);
  8.         return 0;
  9. }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top