Array in C

An array is a group or the collection of data having the sameĀ data-type stored in a contiguous memory location. It is a simple data structure format where the primitive type of data such as int, char, double, float, etc are …

Read moreArray in C

C – Function

A function refers to a block of code that performs a specific task. We can divide and create a separate function in a program so that each function performs a different specific task and can be called as many times …

Read moreC – Function