fork download
  1. #include <stdio.h>
  2. float zwrocLiczbe();
  3.  
  4.  
  5. int main(void)
  6. {
  7. float a;
  8. a=zwrocLiczbe();
  9. printf ("%f\n",a);
  10. return 0;
  11. }
  12.  
  13. float zwrocLiczbe()
  14. {
  15. float a;
  16. a=5.5;
  17. return a;
  18.  
  19. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
5.500000