26. C – Strings to Pointer
In this tutorial we will learn to store strings using pointers in C programming language. We know that a string is a sequence of characters which we save in an array. And in C programming language the \0 null character marks the end of a string. Creating a string In the following example we are creating a string str using char character array… Read More »
