Latest Answer: in the header files Functions are decleared. ...
Latest Answer: Far pointer is a pointer variable. It is just like near pointer. But if we use large memory models, then we can use these far pointers. Because these far pointers occupy 4 bytes of memory. ...
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Latest Answer: NULL pointer is pointer which is not pointing to anything in the memory. NULL is defined as (void*)0.Uninitialised pointer is pointing to some memory location but the pointer values are not assigned.Malloc returns the memory address, but the contents ...
Latest Answer: NULL is a macro which contains the value 0 (on most implementations). this is the one used to initialize a pointer to NULL ...
Latest Answer: This error appears due to incorrect assignment to pointer and pointer tries to access illegal memory location. ...
Latest Answer: near pinter occupy 16 bytesnear and far occupy 32 bytes ...
Latest Answer: Pointers to far objects are stored using four bytes (32 bits). The bytes are stored little endian or low to high order. The first word contains the 14-bit memory offset (bits 14 and 15 are always 0). The second word contains the page number (or segment ...
Latest Answer: Sorry, it is not same because arr stores the value where as &arr is the address of that value. ...
Latest Answer: yes, by mentioning the name of array we get the base address of the array ...
View page << Previous 12 13 14 15 [16] 17 18 19 20 21 Next >>

Go Top