8 lines
122 B
C
8 lines
122 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("%.15f\n", 12345.678910111213);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|