Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
gal
#include <iostream> #include <functional> using namespace std; class A { public: A() { cout << "in ctor\n"; } A(const A& a) { cout << "in copy\n"; } A(const A&& a) { cout << "in move\n"; } }; void foo(A &a) { cout << "in foo\n"; } void main() { A a1; foo(a1); }
run
|
edit
|
history
|
help
0
Dijkastra
Simulare 2022
substr
11 და 16 აპრილს დამუსავებული
sortbyfrequency(hasing+sorting using comparator function)
ClassQuiz2
replace_copy-30-Seconds-of-C++
threadpool01
Test 12(2021)
scemo dd