✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
После выполнения ряда операций с указателем, что будет выведено на экран?
int main()
{
// предположим, int занимает 4 байта
cout << sizeof(int) << endl;
int *x = new int;
// предположим адрес равен 0x60450000
cout << x << endl;
cout << x + 2 << endl;
return 0;
}