efrei/programmation-c-cpp/tp4/sos-crash.c

17 lines
245 B
C
Raw Normal View History

2021-11-15 10:39:59 +01:00
/* SOS crash */
#include <stdio.h>
#include <stdlib.h>
int main() {
int age = 23;
int *pointeur_age = &age;
printf("Quel est votre âge ? ");
scanf("%d", pointeur_age);
printf("Vous avez %d ans\n", age);
return 0;
}