C Programming and Technical Programming Definition

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

Read Solution (Total 1)

C Other Question

Q. What is use of #pragma inline directive in c language?

A. #pragma inline only tells the compiler that source code of program contain inline assembly language code .In c we can write assembly language program with help of asm keyword.
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.