enumeration constant without typename

suggest change

Enumeration types can also be declared without giving them a name:

enum { buffersize = 256, };
static unsigned char buffer [buffersize] = { 0 };

This enables us to define compile time constants of type int that can as in this example be used as array length.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents