fork download
  1. #include<stdio.h>
  2. void main()
  3. {
  4. int a=1;
  5. int n=5;
  6. while(n!=0)
  7. {
  8. a=a*n;
  9. n=n-1;
  10. printf("%d",a);
  11.  
  12. }
  13. }
Runtime error #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
52060120120