Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void pertemem()
- {
- int *a = malloc(sizeof(int));
- *a = 10;
- }
- int main()
- {
- //perd de la mémoire
- pertemem();
- // division par 0
- int a = 0;
- return 1/a;
- // var non initialisé
- printf("%d\n",test);
- //modifie une variable par un pointeur qui déborde de sa valeur pointée
- int num1 = 2;
- int num2 = 10;
- //declaring and initializing the pointer
- int *ptr = &num1;
- *ptr = ;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement