fork(1) download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int i,t[5\];
  5. for(i = 0; i < 5; i++)
  6. {
  7. t[i\] = 2 * i; i = 0;
  8. }
  9. for(i = 0; i < 5; i++)
  10. {
  11. i += t[i\];
  12. }
  13. printf("%d",i);
  14. return 0;
  15. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:4:13: error: stray ‘\’ in program
    int i,t[5\];
             ^
prog.c:7:10: error: stray ‘\’ in program
       t[i\] = 2 * i; i = 0;
          ^
prog.c:11:15: error: stray ‘\’ in program
       i += t[i\];
               ^
stdout
Standard output is empty