Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
pointer to pointer
//clang 3.8.0 #include <iostream> int main() { int value=6; int *ptr=&value; std::cout<<*ptr<<'\n'; int **ptrptr=&ptr; std::cout<<**ptrptr; }
run
|
edit
|
history
|
help
0
Recursive Call Example Sum
Variable declarations in while loop conditions are also C++-only.
New wall
Sum of Natural Numbers using loop
SubsequenceArray
Graphs Iteration2 Directed Graphs
virtual members
Tree Traversal and Node
Heap: insert and deleteMin() Implementations
Throttle Example (Send two requests every two seconds)