Hello I took my quiz earlier and I'm kind or curious why I got this question wrong on pointers | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hello I took my quiz earlier and I'm kind or curious why I got this question wrong on pointers

Given the following two statements, how might you change the value of a to 4? double a = 3; double *p = &a;    &p = 4;      *p = 4;      p->a = 4; (I selected this one because I assumed that double *p = &a a=4;      ++p;      It is not possible to change a by using p  

8th Dec 2020, 5:54 PM
boba
boba - avatar
1 Answer
0
*p = 4; This mean "change the value pointed to by p".
8th Dec 2020, 6:32 PM
rodwynnejones
rodwynnejones - avatar