Files
DEV/DEV1.1/TP03/lettre.c

11 lines
170 B
C
Raw Permalink Normal View History

/* premier programme */
#include <stdlib.h>
#include <stdio.h>
int main(void) {
char lettre='a';
lettre=lettre-32;
printf("%c\n",lettre);
return EXIT_SUCCESS;
}