I need help building a program that performs the following operations:
.
1. Declares three pointer variables called iPtr of type int, cPtr of type char, and fFloat of type float.
.
2. Declares three new variables called iNumber of int type, fNumber of float type, and cCharacter of char type.
.
3. Assigns the address of each non-pointer variable to the matching pointer variable.
4. Prints the value of each non-pointer variable.
5. Prints the value of each pointer variable.
6. Prints the address of each non-pointer variable.
7. Prints the address of each pointer variable.
.
Thanks in advance.