Advertisement
mario_mos

debut

Aug 2nd, 2023 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.46 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void pertemem()
  4. {
  5.     int *a = malloc(sizeof(int));
  6.  
  7.     *a = 10;
  8. }
  9.  
  10. int main()
  11. {
  12.     //perd de la mémoire
  13.     pertemem();
  14.     // division par 0
  15.     int a = 0;
  16.     return 1/a;
  17.     // var non initialisé
  18.     printf("%d\n",test);
  19.     //modifie une variable par un pointeur qui déborde de sa valeur pointée
  20.     int num1 = 2;
  21.     int num2 = 10;
  22.     //declaring and initializing the pointer
  23.     int *ptr = &num1;
  24.     *ptr = ;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement