11 lines
140 B
C
11 lines
140 B
C
/* premier programme */
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("%c", ('a' - 32));
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|