Question: Need help with C question Write a function to set x to be the minimum long integer. The parameter passed to the function is a
Need help with C question
Write a function to set x to be the minimum long integer. The parameter passed to the function is a pointer to x. You may only use the constants 0-63 in this function, and must restrict yourself to using the assignment operator, the dereferencing operator, the bitwise operators, and the shift operators. You may need to use the casting operator as well.
void minimum(long *xptr) { }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
