Write an expression that evaluates to 1 more than the value in the location pointed to by the integer pointer variable ip. Thus, if ip points to a location containing the value 3, the expression should evaluate to 4.

Relax

Respuesta :

*ip+1
ip is a pointer to int
*ip is that   int   so *ip+1 is the value at ip  plus 1