9 lines
130 B
C
9 lines
130 B
C
|
|
/* premier programme */
|
||
|
|
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(void) {
|
||
|
|
printf("%c\n", 'î');
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|