fork(2) download
#include <stdio.h>

int main(void) {
    float acc = 0;
    for (int i = 0; i < 1024*1024; i++) {
        acc += 30504.00005f;
    }
    acc /= (1024*1024);
    printf("%f\n", acc);
    return 0;
}
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
30687.304688