Given the following declarations int i =3, j, *iptr;
the following statement is intended to assign value of i to j
j = *iptr;
however this will not work unless preceded by another statment.
write...