#include #include #include //for memmove #include "introspect.h" using namespace std; int main() { const size_t n = 3; const introspect source[n]; introspect dest[n]; memmove(dest, source, sizeof source); cout << "address of dest == " << dest << "\n"; return EXIT_SUCCESS; }