void main(void)
{
    short int entier ;
    double reel ;
    Cls() ; /* Cls = fonction spécifique CVI (clear_screen) = efface l'écran */
    printf("Entrez un entier dans <-32768,+32767> : ") ;
    scanf("%hd", &entier) ;
    printf("\n Pour verification : l'entier lu est %hd", entier) ;
    printf("\n Entrez un reel double : ") ;
    scanf("%lf", &reel) ;
    printf("\n Pour verification : le reel double lu est %lf", reel) ;
}
