fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float x=3.14;
  6. double y=567.175;
  7. printf("x=%f",x);
  8. printf("y=%f",y);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
x=3.140000y=567.175000