fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float b;
  6. double db;
  7. scanf("%f",&b);
  8. printf("b = %.2f\n",b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5300KB
stdin
3.14
stdout
b = 3.14