fork download
  1. #include <stdio.h>
  2. int main() {
  3. #define N 10
  4. int s = 0;
  5. for (int i = 0; i < N; i++) s += i;
  6. printf("%d\n", s);
  7. return 0;
  8. }
  9. /* end */
  10.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
45