Message
Message
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
/* Define --------------------------------------------------------------------*/
#define MAX_ROW 2
#define MAX_COLUMN 15
#define MAX_ENTERPRISE 30
/* Enum ----------------------------------------------------------------------*/
typedef enum Status
{
Empty,
Registered
} Status;
/* --------------------------------------------------------------------------- */
/* Begin: Student Answer */
/* --------------------------------------------------------------------------- */
// Requirement 11: Handle the "Show" command and call the appropriate function
void handleShowCommand(int map[MAX_ROW][MAX_COLUMN], Enterprise
enterpriseArray[MAX_ENTERPRISE], char *command)
{
// TODO: Implement this function
}
/* --------------------------------------------------------------------------- */
/* End: Student Answer */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* Example Test Cases for Main */
/* --------------------------------------------------------------------------- */
// Initializes booth map and enterprise array to default values and then
// runs a series of test cases to verify enterprise registration, booth
// assignments, alterations, and knapsack optimization functionality.
int main()
{
// Define your own testcases to test by yourself
return 0;
}