CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #49

Dereferencing a Pointer to a Pointer

hardPointers

What does this code print?

📄 Code

1int x = 42;
2int *p = &x;
3int **pp = &p;
4printf("%d", **pp);