fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. double b;
  7. // double c;
  8. a=10;
  9. b=2.35;
  10.  
  11. // c=a/b;
  12.  
  13. printf("%d+%f=%f\n",a,b,a+b);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
10+2.350000=12.350000