13 lines
233 B
C
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;
|
|
}
|