Is there a specification on how the __FILE__ macro will be expanded if it is in a .h?
If I define in foo.h
#define MYFILE __FILE__
And include it in foo.c
#includes "foo.h"
void main(){
printf("%s",MYFILE);
....
Does this output foo.h or foo.c? (Yes I realize this is a stupid example)
Sorry for what should be a simple question. The documentation on the web seems conflicting. For what it is worth VS2008 comes back as foo.c which is what I would expect....I think. I am just trying to confirm if this is defined behavior.