fork download
  1. #include <stdio.h>
  2.  
  3. void f_step(float f_value)
  4. {
  5. printf("%f",f_value); //Falls ich f_step(1.0f) aufrufe bekomme ich hier eine 0.00000000 Ausgabe. Wieso?
  6. }
  7.  
  8. int main()
  9. {
  10. f_step(1.0f);
  11. return 0;
  12. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
1.000000