_Complex is a keyword, although the normal usage is throgh the macro complex
Also note that "int _Complex" is an error, the only complex types in C are double complex, float complex, and longdouble complex (or, alternatively, double _Complex, float _Complex, and longdouble _Complex).
If you're using gcc to compile a C program, make sure to pass -pedantic-errors in addition to -std=c99