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