#include #include static char * ini_car(void) { char c = '@'; return &c; } static void f_car(void) { char car = '#'; } int main(void) { char *p = ini_car(); printf("Avant le second appel <%c>\n", *p); f_car(); printf("Après le second appel <%c>\n", *p); return EXIT_SUCCESS; }