C Programming and Technical

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.

Read Solution (Total 0)

C Other Question

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.
Q. Do you know, what is the meaning and use of static keyword in c?

A. Keyword static is used for declaring static variables in c. This modifier is used with all data types like int, float, double, array, pointer, structure, function etc.