Author: Niranjan sharma
Advantages and Disadvantages of Recursion
Advantage Disadvantage The code may be easier to write It is generally slower than non-recursive function Reduce the unnecessary calling of function It may require …
Wap in ‘c’ to check whether the given number is even or odd
#include<stdio.h>#include<conio.h>
Pointer in C
Pointer A pointer is a variable that stores memory address or that contains the address of another variable where addresses are the location number always …
FUNCTION IN C PROGRAMMING
Function A function is a self-contained block of codes or sub-programs with a set of statements that perform some specific task or coherent task when …