fork download
  1. #include <stdio.h>
  2.  
  3. int func(int a,int b,int c,int d,int e)
  4. {
  5. return a+b+c+d+e;
  6. }
  7.  
  8. #define macro(a,b,c,d,e) ((a)+(b)+(c)+(d)+(e))
  9.  
  10. int main(void)
  11. {
  12.  
  13. }
  14.  
Success #stdin #stdout 0s 4568KB
stdin
Standard input is empty
stdout
Standard output is empty