Https://ide.codingblocks.com/s/116409

above link is my code while I was practicing this tutorial.
please explain about the output of line 21 and 22.
in line 22, it returning 8 bytes for not only int but also for void float char and bool too.

in line 21, &ch is returning not the actual value of ch that is “B”.

@ankitdelhi20 hey ankit this line giving as 8 bytes because this line returns the size of pointers address and it totally depends on the architecture of the system like if you have 32 bit architecture then the output is 4 but for 64 bytes architecture it should be 8.