Browsing tag

Data structure

Single dimension Array of C language

Single dimension Array of C language In this tutorial, we will  discuss this in Single dimension Array in C  language An array is a collection of data structures that consist of fixed(cannot change array length) a number of values of the same type such as int, char, float etc… If the data can be viewed…

Pointers in C programming Language

Pointers in C programming Language We will discuss Pointers in C programming language Pointer variable in C The pointer variable is one of the features of C and C++ language It is one of the most fundamental and important concepts; similar to an array in C and C++ language, but it is not an array….

Array data type in programming languages

Array data type in programming languages We will learn about Array data type in programming languages Description An array is a data structure in Programming Languages. It is a collection of similar type of element that have continuous memory location. We can store a table of an object or primitive data type with a set…