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