I was trying to compile a simple ansi C example in Visual Studio 2010 and came across with this error compiling:

Error: patchC.c(5): error C2275: 'FILE' : illegal use of this type as an expression

Program1:

#include <stdio.h>

int main(void) {
    printf("Hello world!\n");
    FILE *fp;
    fp = fopen("test.txt", "r");
    return 0;
}

The same program compiles without errors in gcc v4.5.2.

But, if I put the "FILE *fp;" line out of the main(), the program compile gracefully.

Program2:

#include <stdio.h>

FILE *fp;

int main(void) {
    printf("Hello world!\n");
    fp = fopen("test.txt", "r");
    return 0;
}

I don't figure out why this behavior, anyone could answer?

link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

The Visual C++ compiler only supports C90. In C90, all local variable declarations must be at the beginning of a block, before any statements. So, the declaration of fp in main needs to come before the printf:

int main(void) {
    // Declarations first:
    FILE *fp;

    // Then statements:
    printf("Hello world!\n");
    fp = fopen("test.txt", "r");
    return 0;
}

C99 and C++ both allow declarations to be intermixed with other statements in a block. The Visual C++ compiler does not support C99. If you compiled your original code as a C++ file (with a .cpp extension), it would compile successfully.

link|improve this answer
You are right James McNellis, thanks for the quick reply! – Msum May 4 '11 at 2:38
If his answer is correct, you should accept it by clicking the checkmark on the left. – Alex May 4 '11 at 2:41
Thanks, I did not know that. – Msum May 4 '11 at 2:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.