Question: Given the following code: typedef struct { int hour; int minute; int second; } Time_T; int main() { Time_T timeofDay; Time_T *ptrtime; ptrtime = &timeofDay;

Given the following code: typedef struct { int hour; int minute; int second; } Time_T; int main() { Time_T timeofDay; Time_T *ptrtime; ptrtime = &timeofDay; /*your code*/ return 0; } Provide a line of code to set ptrtime's minute member to 45 using an ->. Do not include any spaces in your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
