Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Dat pointers
//clang 3.7.0 #include <iostream> int main() { int *val; int a = 42; val = &a; int k = a; // k == 42 std::cout << a << "\n"; std::cout << val << "\n"; std::cout << k << "\n"; }
run
|
edit
|
history
|
help
0
Merge Sort
Own initialization
Dash-D compiler flag example
Recursive Call Example Sum
function returning a function demo
Fun with Pointers #2
U2
test C++ register
appliWall
Balanced Insert Heap Example