fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int n;
  5. n=0;
  6. while(n<100)
  7. {
  8. n=n+1;
  9.  
  10. }
  11.  
  12. printf("%d\n",n);
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
100