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