adding the poll question

This commit is contained in:
Jidong Xiao
2024-02-02 13:27:23 -05:00
parent 87864bb42e
commit 6b9f42ea94

View File

@@ -220,8 +220,8 @@ Match up the line of code with the function that is called. Each letter is used
Foo f1;                           a) assignment operator Foo f1;                           a) assignment operator
Foo\* f2;                         b) destructor Foo\* f2;                         b) destructor
f2 = new Foo(f1);          c) copy constructor f2 = new Foo(f1);          c) copy constructor
f1 = \*f2;                    d) default constructor f1 = \*f2;                         d) default constructor
delete f2;                    e) none of the above delete f2;                         e) none of the above
## 8.15 Leetcode Exercises ## 8.15 Leetcode Exercises