void main(void)
{
    short int i, max=10 ;
    printf("Entrez i : ") ;
    scanf("%hd", &i) ;
    i>max ? i=0 : i++ ;
    printf("\n Nouveau i : %hd", i) ;
}
