Question: a . The expected output: ` ` ` Pointer: Demonstrate the use of & and * operator : m = - - - - -

a. The expected output:
```
Pointer: Demonstrate the use of & and * operator :
m =------100
fx =200.600006
cht = z
Using & operator:
-------------------------
address of m =0x7ffee6c49568
address of fx =0x7ffee6c49564
address of cht =0x7ffee6c49563
Using & and * operator:
--------------------------------
value at address of m =100
value at address of fx =200.600006
value at address of cht = z
Using only pointer variable:
-------------------------------------
address of m =0x7ffee6c49568
address of fx =0x7ffee6c49564
address of cht =0x7ffee6c49563
Using only pointer operator:
-------------------------------------
value at address of m =100
value at address of fx=200.600006
value at address of cht= z
```
b. Note that the address that highlighted by yellow color can be different for your program.
a . The expected output: ` ` ` Pointer:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!