Functions Can only do two things with a function Call it Take its address with & operator Thus two shortcuts are possible fp = function; instead of fp = &function; i = fp(); instead of i = (*fp)();