DEV/DEV1.1/TP10/debord.c
Bekkouche Anis 1765a453cf ejeejh
2024-10-07 17:30:04 +02:00

13 lines
233 B
C

#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;
}