I was wondering whether the const/static keywords apply to all variables declared in a single C++ statement.
For instance, with this code
static const int a, b, c;
are they all declared as static const ints? Or is just 'a' declared as a static const int and the rest declared as an int or some variation of that?