DEV/BUT1/DEV1.1/Reels/poussieres.c

8 lines
122 B
C
Raw Normal View History

2024-02-01 13:55:03 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("%.15f\n", 12345.678910111213);
return EXIT_SUCCESS;
}