C Programming and Technical Programming Definition

Q. What is huge pointer in c?

A. The pointer which can point or access whole the residence memory of RAM i.e. which can access all the 16 segments is known as huge pointer.

Read Solution (Total 0)

C Other Question

Q. What is the meaning of multilevel pointers in c?

A. A pointer is pointer to another pointer which can be pointer to others pointers and so on is known as multilevel pointers. We can have any level of pointers
Q. Is it possible to rename any function in c?

A. Yes, we can rename any function using typedef keyword. It is useful when function declaration
is too complex and we have to give any simple name or if we have to create more numbers of
function of the same type.