C Programming allows us to perform mathematical operations through the functions defined in <math.h> header file. The <math.h> header file...
Continue reading...C
C POINTER
A pointer is a particular variable that holds the memory address and usually holds the location of another variable in...
Continue reading...C JUMP STATEMENTS
In C language there are 4 types of jump statements: Break Statement Continue Statement Goto Statement Return Statement Break Statement:...
Continue reading...C TYPECASTING
Typecasting allows us to convert one data type into another. In C language, we use the cast operator for typecasting...
Continue reading...C RECURSION
Recursion is the process of repeating items in a self-similar way. In programming languages, if a program allows you to...
Continue reading...C IDENTIFIERS
Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to...
Continue reading...C OPERATORS
Operators: Operators are special symbol that perform specific operation on one, two or three operands and then return a result. Operand: Operand...
Continue reading...C STRINGS
It is an array/sequence of characters that ends with null characters (). Null characters represent the end of the string....
Continue reading...C FUNCTIONS
A function is a block of statements that performs a specific tast. Advantages of functions: Using functions, we can avoid...
Continue reading...C ARRAY
An array is a collection of data of the same type stored in a contiguous memory location. The array is...
Continue reading...