Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Pointer array
//clang 3.8.0 #include <iostream> using namespace std; int main() { int numb[5]; int *p; p=numb; *p=5; p=numb; p++; *p=10; p=&numb[2]; *p=15; p=numb+3; *p=20; p=numb; *(p+4)=25; for(int i=0;i<5;++i){ cout<<numb[i]<<","; } }
run
|
edit
|
history
|
help
0
Find in vector vs unordered_map
How to test call member?
Forgetting to check end
Throttle Example (Send two requests every two seconds)
C++ does not have reference-to-reference types
applidiumResto_corrigé
overloading
le regime keto aviss
Array-Based Heap Example Solution
function returning a function demo