Passing Array to Function
Similar to normal variable, we can also pass an array to the function. There is no major difference between passing a variable and array except that we have to specify the dimensionRead More…
Similar to normal variable, we can also pass an array to the function. There is no major difference between passing a variable and array except that we have to specify the dimensionRead More…
In my last post I discussed about “Types of Function”. In this post I will serve one important concept which is related to the function e.i Call by value v/s Call by referenceRead More…
If you remember, we were talking about functions since last two posts. My previous post was on “Elements of Function”. In this post we will discuss about “Types or Categories of Function”.Read More…
Hello everyone!. You might remember about my last post on “Introduction to Function” in which I had discussed about the what function is and what advantages it can bring. If you haven’tRead More…
With this post we are moving on to the advance topics of C language. In this post, I am going to discuss one of the most important concept of modern programming languagesRead More…
Hello there. In my last post I you learnt about searching techniques in which I explained two most common searching techniques i.e. linear search and binary search. In this post again IRead More…
My previous post described some useful string handling functions to deal with string data for different operations. In this post I am about to explain one of the most common and frequentlyRead More…
C programming language provides a rich set of string handling functions to perform different task on string easily. They are available inside string.h header file so we need to include string.h intoRead More…
Arrays of string can be represented using the two dimension character array. An array having two subscripts is known as two-dimension array. Two-dimensional array is a collection of rows and columns soRead More…
A String is an array of character. We can easily represent a string using one dimension array. Similar to an array of integer that allows storing collection of integer values, we canRead More…