fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float a=2.4;
  6. float b=5.2;
  7. printf("a=%f,b=%f",a,b);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5252KB
stdin
Standard input is empty
stdout
a=2.400000,b=5.200000