#include <stdio.h>
int main &#40;void&#41; &#123;
int titi = 3;
void Affiche &#40;void&#41; &#123;
printf &#40;"%d\n",titi&#41;;
&#125;
Affiche &#40;&#41;;
getchar&#40;&#41;;
return 0;
&#125;