#include<stdio.h> int main() { int[6] a = {1,2,3,4,5,6,7}; int c; c=a[0]^a[3]; return 0; }
Standard input is empty
prog.c: In function ‘main’: prog.c:5: error: expected identifier or ‘(’ before ‘[’ token prog.c:8: error: ‘a’ undeclared (first use in this function) prog.c:8: error: (Each undeclared identifier is reported only once prog.c:8: error: for each function it appears in.)
Standard output is empty