You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
P 3-61
long cread(long *xp) {
return (xp ? *xp : 0);
}
Explain:
The key point is to avoid * and xp come together.
*/
long cread_alt(long xp) {
long a=0;
return *(xp? xp:a);
}