#include <stdio.h> #include <stdlib.h> int main () { int count; int count; return 0; }
Standard input is empty
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; ^
Standard output is empty