fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main ()
  4. {
  5. int count;
  6. int count;
  7. system("PAUSE");
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:6:5: error: redeclaration of 'count' with no linkage
 int count;
     ^
prog.c:5:5: note: previous declaration of 'count' was here
 int count;
     ^
prog.c:6:5: warning: unused variable 'count' [-Wunused-variable]
 int count;
     ^
stdout
Standard output is empty