Hello,
I need to create and pass 2 structure pointers to a function. The function will take the pointers and subtract them.

This is a time program, so users enter the 24 hour clock time, twice and subtract them.

My first structure looks like this:
struct time_of_day
{
short hour[24];
short minute[60];
};

void settime();

Not sure how I should attack this



Thanks
Matt