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