fork download
  1. #include <stdio.h>
  2.  
  3. void foo(float a) {}
  4.  
  5. int main(void) {
  6. // your code goes here
  7.  
  8. int a = 1;
  9. foo(a);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2048KB
stdin
Standard input is empty
stdout
Standard output is empty