[2 points] Indicate the value written to cout for the following C++ code segments. 1) = &i; int i{100}; int* ptri i i+20
Posted: Sun May 15, 2022 7:43 pm
[2 points] Indicate the value written to cout for the following C++ code segments. 1) = &i; int i{100}; int* ptri i i+20; cout << (*ptri); Output: = 2) string s = “2514”; cout << s[1]; Output: