13 lines
174 B
C
13 lines
174 B
C
|
/* troisieme programme */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("un\n");
|
||
|
printf("\tdeux\n");
|
||
|
printf("\t\ttrois\n");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|