|
|
От: |
korzhik
|
|
| Дата: | 07.06.05 16:36 | ||
| Оценка: | |||
7.1.5/1
const or volatile can be combined with any other type-specifier.
int main()
{
const unsigned short int n1(0u);
unsigned const short int n2(0u);
unsigned short const int n3(0u);
unsigned short int const n4(0u);
}