finished hw7

This commit is contained in:
2019-11-18 16:34:57 -07:00
parent f47f079bdc
commit 336746c138
514 changed files with 38393 additions and 2 deletions

8
quiz5/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <iostream>
int main() {
int* a = new int(10);
int*& b = a;
std::cout << b << " " << a;
return 0;
}