Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ShiqiYu/CPP
/ main
Function
main
week05/examples/pointer-pointer.cpp:4–14 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
using namespace std;
3
4
int main()
5
{
6
int num = 10;
7
int * p = #
8
int ** pp = &p;
9
*(*pp) = 20;
10
11
cout <<
"num = "
<< num << endl;
12
13
return 0;
14
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected