Recursion
Recursion Definition: A function containing either a call statement to itself or a call statement to another function that ma...
Recursion Definition: A function containing either a call statement to itself or a call statement to another function that ma...
memory layout of a C program memory layout of a C program: A C program memory layout is defined below.
Storage class S torage class of a variable refer to the lifetime, scope and visibility of a variable where, Lifetime : time peri...
Brief note on looping what is loop? It is a process of executing one or more statement or a set of statements repeatedly until some...
Why use of goto…label is not recommended in C programming Why use of goto…label is not recommended for unconditional jumps ? T...
What is Dangling else problem What is Dangling else problem ? If a matching ‘else’ with respect to an if statement or else if sta...
What is a header file in c program #include<stdio.h> It is a pre-processor file inclusion directive statement that searc...