finished hw7
This commit is contained in:
8
quiz5/main.cpp
Normal file
8
quiz5/main.cpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
int* a = new int(10);
|
||||
int*& b = a;
|
||||
std::cout << b << " " << a;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user