Hello! I want to pass array of struct to a function. After from that function to pass it to another function.
I made some efforts but without result.
Those are some parts of my code
i create the structure to my main function
airplane ticket[numberOfTickets];
from main function i pass parameters to showMenu function.Until here all are ok
showMenu(ticket,numberOfTickets);
and from showMenu function i pass parameters to bookSeatAssignment function, but something i do wrong here
bookSeatAssignment(showMenuTickets,showMenuNumberOfTickets);
Thanks!