ASDV-Cpp/Assignments/pointers/main.cpp

9 lines
138 B
C++
Raw Permalink Normal View History

2024-03-09 23:17:44 -06:00
#include <iostream>
#include "pointers1.h"
int main() {
int * p = dupParameter(7);
std::cout << &p << std::endl;
return 0;
}