Let's take the following example:
#include <stdio.h>
enum fruit {APPLE, ORANGE, BANANA};
enum planet {EARTH, MARS, NEPTUNE};
void foo(enum fruit f)
{
printf("%ld", f);
}
int main()
{
enum planet p = MARS;
foo(p); /* compiler doesn't complain */
return 0;
}
What's the point of enum
s having names, if that code would compile?
Here is my command line for gcc:
gcc file.c -ansi -Wall -Wextra
AFAIK, in C99, the "tag" (what you call the name, e.g.
fruit
) ofenum
is optional.So
is acceptable (and quite useful)
and you can even give values integral constants
which is a more modern way than
(in particular, such
enum
values are known to the debugger, when you compile with debug info)But in C
enum
are mostly integral values. Things are different in C++.Regarding using
%ld
format control conversion forprintf
with anenum
argument it is probably some undefined behavior (so you should be scared). Probablygcc -Wall -Wextra
might warn you.BTW, GCC has many options. Read its chapter on Invoking GCC.
I recommend (in 2017) coding for C99 or C11, not old 1989 ANSI C.