fork(1) download
  1. #include <stdio.h>
  2. int pow(int a,int b, int c)
  3. {
  4. if(a>b && a>c)
  5. {
  6. return a;
  7. }
  8. else if(b>a && b>c)
  9. {
  10. return b;
  11. }
  12. else
  13. {
  14. return c;
  15. }
  16. }
  17.  
  18. main()
  19. {
  20. printf("%d ",pow(100,100,1));
  21. }
Runtime error #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
1