fork download
  1. #include <stdio.h>
  2.  
  3. typedef int IntFun(int, int);
  4.  
  5. IntFun foo; // Deklaration "int foo(int, int)"
  6.  
  7. int main()
  8. {
  9. printf("%d\n", foo(1, 2));
  10. return 0;
  11. }
  12.  
  13. int foo(int a, int b) { return a + b; } // Definition foo
Success #stdin #stdout 0.02s 1676KB
stdin
Standard input is empty
stdout
3