:woeisthanos:
This commit is contained in:
9
Assignments/lab4-Structures_CalebFontenot/main.cpp
Normal file
9
Assignments/lab4-Structures_CalebFontenot/main.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user