Ի՞նչ կտպվի էկրանին։
#include <iostream> int main() { int a = 5; int* p = &a; p = p + 1; std::cout << a << " " << *p; }