What is Dynamic data structure ?

We need a dynamic data structure to data efficiently into memory. Memory spaces in a program can be accessed using dynamic memory allocation. This is opposite to static data structure…
View Answer

What is dangling Pointer in c ?

The most common bugs related to pointer & memory management is called dangling or wild pointers. Sometimes programmer fails to assign the pointer with a valid address, then this type…
View Answer

What is recursion in C ?

Recursion is a process that happens when a function calls a copy of itself to work on any smaller problem. Any function that calls itself repeatedly is called a recursive…
View Answer

What is Static Variable in C ?

Static variable have a property of preserving their value even after they are out of their scope. Static variable preserve their previous values in their previous scope and are not…
View Answer

What is Pointer in C ?

For storing the address of another variable pointers can be used. Variables of type int,char, array, function or any other pointer can be of type pointer. Architecture of a pointer…
View Answer