🟢 Վարժություն 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 in
Sign in to continue
Sign in to your account
Ի՞նչ կտպվի էկրանին։
#include <iostream>
int main() {
int a = 5;
int* p = &a;
p = p + 1;
std::cout << a << " " << *p;
}Sign in to your account