For each of the following, name what the resulting type of the expression is. If the expression is not valid, state that. Use the following declarations in your answers: int a; int *b; float c; float *d; Example: &c Answer: Expression has pointer to float type 1. &a 2. &b 3. *a 4. *b 5. &*b 6. *&b 7. &*a 8. *&a 9. &d 10. *c