fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float y=32.5,x=56.2;
  5. printf("Float value of y is:%g",y);
  6. printf("Float value of x is:%g",x);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4288KB
stdin
Standard input is empty
stdout
Float value of y is:32.5Float value of x is:56.2