Array

Applications of Array

In this article, we are going to go through the application of an important data structure of any programming language. We are talking about arrays.  An array is a linear data structure which is used to store collection of similar type of data each of which can be accessed by using an index. The memory …

Applications of Array Read More »

Sparse Matrix in C

In this tutorial, we are going to learn about the sparse matrix in C.  Before we start let us first discuss what a little bit about two-dimensional arrays. A matrix is represented by 2D arrays where the first index represents the number of rows and the second index represents the number of columns in the …

Sparse Matrix in C Read More »

Anagram in C

Here is the program for anagram in c.   Two strings are said to be anagrams if by rearranging the characters of any one string will make both strings equal.   Example: “adssfa” and “dsasfa” are anagrams “adsfa” and “sdfac” are not anagrams How to Check two Strings are Anagrams or not? So what we will …

Anagram in C Read More »