CJCoding With Joseph
15per day
← 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 #7

Pointer Dereference Output

mediumPointers

What is the output of this code?

📄 Code

1#include <iostream>
2using namespace std;
3 
4int main() {
5 int x = 42;
6 int *p = &x;
7 *p = 100;
8 cout << x << endl;
9 return 0;
10}