Guest User

Untitled

a guest
Jul 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. void* test;
  2. int x = 5;
  3. if((test = my_malloc(4)) == NULL) {
  4. printf("Fail");
  5. }
  6. test = x;
  7. printf("Test 1: %d\n",(int)test);
Add Comment
Please, Sign In to add comment