volatile int x=1;
const int y=x*5;
int main()
{
const int z=6;
return z*y;
}
Как думаете, где будут расположены константы y и z?