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 Sort Example
Deleted special operations are propagated to derived class
Pascals Triangle
Throttle Example using a circular queue (Push all but 2 less than maxSize; then pop all but 2 of current size)
Non type template argument
Vector of pointer of P...
std::reference_wrapper
SceneGraph Interviewee Task
test C++ register
34534