In c programming language, arrays are used in wide range of applications. Few of them are as follows...
● Arrays are used to Store List of values
In c programming language, single dimensional arrays are used to store list of values of same datatype. In other words, single dimensional arrays are used to store a row of values. In single dimensional array data is stored in linear form.
● Arrays are used to Perform Matrix Operations
We use two dimensional arrays to create matrix. We can perform various operations on matrices using two dimensional arrays.
● Arrays are used to implement Search Algorithms
We use single dimensional arrays to implement search algorihtms like ...
● Arrays are used to implement Sorting Algorithms
We use single dimensional arrays to implement sorting algorihtms like ...
● Arrays are used to implement Datastructures
We use single dimensional arrays to implement datastructures like...
No comments:
Post a Comment