Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Fun with Pointers #1
// pointer example from diagnostics #include <iostream> using namespace std; int main () { int *foo, *foo2; foo = new int[5]; for (int i=0; i<5; i++) { foo[i] = i; } foo2 = foo; foo2++; cout << foo2[0]; return 0; }
run
|
edit
|
history
|
help
0
Bubble Sort Example
Crow unordered_map Quiz
ECE2574_Function_Calling_Example
NaN inside set
Sum of Natural Numbers using loop
SimpleList Example
001
user defined exception
IsContainer
11/18