fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float x=0.0;
  5.  
  6. for (int i=0; i<10; i++)
  7. printf("%d\t%f\n", i, i);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
0	-0.000000
1	-0.000000
2	-0.000000
3	-0.000000
4	-0.000000
5	-0.000000
6	-0.000000
7	-0.000000
8	-0.000000
9	-0.000000