Description🟢 Վարժություն 6Ի՞նչ կտպվի էկրանին։#include <iostream> int main() { int a = 5; int* p = &a; p = p + 1; std::cout << a << " " << *p; } To check your solution you need to sign inSign in to continue