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
co_assign_1_ques_1
shell sort
Constructor.cpp
Loop comparison
1163. Last Substring in Lexicographical Order
On Off
SOS DP
so
Test 9(2020)
str_to_int