Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. p = (int*)malloc(10*sizeof(int));
  2. if(p==NULL)
  3.     printf("HIBA!");    /*Fontos*/
  4. free(p);            /*Fontos*/
  5. int *t = NULL;          /*nullazatlan pointer halalfejes*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement