Assume the output of the following code:
enum m{JAN, FEB, MAR}; enum m foo(); int main() { enum m i = foo(); printf("%d\n", i); } int foo() { return JAN; }
Correct Answer:
Compile time error
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Correct Answer:
Compile time error
need an explanation for this answer? contact us directly to get an explanation for this answer