fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {float a=12.3456,b=14.5678,c;
  5. c=a+b;
  6. printf("%0.2f",c);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4276KB
stdin
Standard input is empty
stdout
26.91