Introduction To Structure Arrays are the preferred method of storing objects of the same data type. In addition to array …
Several declarations involving pointers
Several declarations involving pointers int *p; /* p is a pointer to an …
Memory Allocation In C Language
Memory Allocation In C Language In C language the allocation of memory is basically of two types: Static Memory Allocation …
Pointers To Pointers In C language
Pointers To Pointers Pointers store the address of a variable, similarly the address of a pointer can also be stored …
#UserDefinedFunctions In C Language With Example
User Defined Functions Functions defined by us are known as User Defined Functions. User Define Functions are created to perform …
conio.h, stdlib.h, math.h, string.h, Header File With Their Functions
conio.h clrscr( ) Clears text mode window getch( ) gets a character from console but does not echo to the …
Library Functions In C Language
Types of Library Functions In C Language : – Definition of Library Function : Functions defined previously in the library …
Call by value and Call by reference in C
Argument Passing Mechanism:- (i) Call by value:- When arguments are passed by value then the copy of the actual parameters …
Function to calculate the sum of two numbers
Function to calculate the sum of two numbers: int sum(int, int); /* Function Prototype or Declaration*/ main( ) { int …
Function A Self Contained Block In C
Function is a small program which takes some input and gives us some output. Function allows a large program to …