Exemplo n.º 1
0
/*Parses initial input*/
void readInput(FILE *f){
	int numCustomers;
	fscanf(f,"%d", &numCustomers);
	int numTransactions;
	fscanf(f,"%d", &numTransactions);
	int throwAway;
	fscanf(f, "%d", &throwAway);
	readTransactions(f, numCustomers, numTransactions);
}
Exemplo n.º 2
0
void Store::load()
{
	readCustomers();
	readProducts();
	readTransactions();
}