Answer:
The first option which is 'Provide real-time documentation of workload and out-of-pocket expenditures' is incorrect as it does not provide a solution. The second option which is 'Provide real-time documentation of workload and out-of-pocket expenditures' is correct as it does provide a solution.'
Explanation:
Answer:
int* strikeCounter ;
int someVal;
scanf("%d", &someVal);
strikeCounter =&someVal;
*strikeCounter =someVal*4;
Explanation:
Here we took one int variable and read that value from user. we assigned that int variable address to pointer variable "strikeCounter " and we are pointing the value of strikecounter as 4 times of that integer variable value