C Program To Find Size of Pointer Variables
Satish B
https://technotip.com/7944/c-program-to-find-size-of-pointer-variables/
Lets write a C program to find out the size or the number of bytes occupied by pointer variables of different data type in your computers memory.
A pointer variable of type float holds only the address of floating point variable. A char pointer variable holds only the address of char type variable. But still the address of all these type of pointer variable is number. Addresses are always numbers and it can’t be a character, a string or real/floating/double numbers.
Also note that addresses are unique. There can’t be 2 location in your computers memory with same address.
C Programming Interview / Viva Q&A List https://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert https://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=_EaAZYSvBog
8205458 Bytes