DEV/DEV1.1/TP10/debord.c

13 lines
233 B
C
Raw Normal View History

2024-10-07 17:30:04 +02:00
#include <stdlib.h>
#include <stdio.h>
int main(void) {
int nombre;
char nombre1;
printf("Veuillez entrer un entier :\n");
scanf("%d", &nombre);
nombre1 = (char) nombre;
printf("%c\n", nombre1);
return EXIT_SUCCESS;
}