10 lines
224 B
C++
Raw Normal View History

2024-03-25 20:54:15 -05:00
#include <iostream>
#import "structures.h"
int main() {
Employee *emp1 = new Employee("Jeff Bezos", 1);
std::cout << emp1->toString();
Employee** employeeArray;
populate(employeeArray, 2, 3);
return 0;
}