fork(1) download
  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include <limits.h>
  4.  
  5. int max(int count, ...)
  6. {
  7. int max = INT_MIN, test;
  8.  
  9. va_list values;
  10. va_start(values, count);
  11. for(int i = 0; i < count; ++i)
  12. {
  13. test = va_arg(values, int);
  14. if(test > max)
  15. {
  16. max = test;
  17. }
  18. }
  19. va_end(values);
  20. return max;
  21. }
  22.  
  23. int main()
  24. {
  25. printf("%d", max(5,1,6,-31,23,24));
  26. return 0;
  27. }
Success #stdin #stdout 0s 5472KB
stdin
Standard input is empty
stdout
24