Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

null.c 169B

123456789101112
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. int main(char* argv[], int argc)
  4. {
  5. int i, j;
  6. int* iPointer;
  7. i = 10;
  8. iPointer = &i;
  9. iPointer = NULL;
  10. j = *iPointer;
  11. }