String as an Array in C
In C Language, String is an array of Char which is terminated by ‘\0’ (NULL). When you iterate the loop up to NULL character then
From Basic to the Best
In C Language, String is an array of Char which is terminated by ‘\0’ (NULL). When you iterate the loop up to NULL character then
As we have learned about array in our previous articles. Here by will go through the example of Double Dimension Array. We have demonstrated Array
Array is a collection of elements with similar data type. eg. if you want to store marks of 100 students then array is better option.