← Back to Question List
C Quiz #41
Modifying a Value Through a Pointer
What does this code print?
📄 Code
1int x = 5;2int *p = &x;3*p = 10;4printf("%d", x);
What does this code print?
1int x = 5;2int *p = &x;3*p = 10;4printf("%d", x);