S
Siemel Naran
Hi. I notice that my compiler accepts
enum
{
A, // comment
B, // comment
};
Notice the trailing comma after B.
Is this legal per the ANSI C and C++ standards?
enum
{
A, // comment
B, // comment
};
Notice the trailing comma after B.
Is this legal per the ANSI C and C++ standards?