Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
const example
//Title of this code #include <iostream> int main() { std::cout << "Hello, world!\n"; int i=10; const int j = i; int &ref = i; printf("Before modify: i = %d, j = %d, ref = %d.\n", i, j, ref); ref++; printf("After modify : i = %d, j = %d, ref = %d.\n", i, j, ref); return 0; }
run
|
edit
|
history
|
help
0
Precendence of Pointer Indirection Example
break.cpp
My calculator
macros
OOP
Making pyramid using nested loop 2/2
lab17feb22x4B.cpp
4
Motsow
19 მარტს დამუშავებული