10 lines
201 B
C
10 lines
201 B
C
|
#include <stdio.h>
|
||
|
# include <stdlib.h>
|
||
|
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%12.f\n", 12345.678910111213);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|
||
|
/* pour qu'il en affiche 15 il faut écrire printf("%15.f\n"...)*/
|