Pinned Post

Latest posts

Structures and Unions in C Programming

Structures and Unions in C Programming  Structures In C language a Structure is a collection of different type of data , store in a single name Stru…

Basic Sorting Algorithm

Basic Sorting Algorithm Sorting Sorting is a process to arrenge the array  elements in ascending or descending order. Sorting is used to organis…

Strings in C language

Strings in C language  Strings String is a sequence of character that is considered as a single data item. String is representing of character array.…

Function and Recursion in C language

Function and Recursion in C language Uses of Function and Recursion  When sometime Our program bigger in size and it becomes difficult to know what t…

Pointers in C Language

Pointers in C Language Pointers Pointer is a derived data type in c language. It can store the address of memory where program instructions or data…

Operators and Operands in C Language

Operators and Operands in C Language Operators  Operators is a symbol that is used to perform certain mathematical or logical operations on data a…