Code:
#include <stdio.h>
#include <getopt.h>
#include <string.h>

int main() 
{
    
    // Menu dictionary
    int menu_size = 4;
    struct MenuItem menu[4];
    menu[0].description = strdup("Fried Chicken");
    menu[0].price = 200.0;
    menu[1].description = strdup("Baked Chicken");
    menu[1].price = 350.0;
...