Untitled

Anonymous
plain_text
04/23/2023 1:19 PM
328 B
18
Indexable
#include <string>
#include <iostream>
using namespace std;

struct Employee
{
	string name;
	int accessLevel;
	double salary;
	int contractDuration;
};

int main()
{
	int N;
	cin >> N;
	Employee* employees = new Employee[N];
}
Editor is loading...