C – String Functions
Often, we need t to manipulate the String according to the need of the program. However, we can do that manually in a program but that is complex to comprehend and the program becomes very large. So to make it …
Often, we need t to manipulate the String according to the need of the program. However, we can do that manually in a program but that is complex to comprehend and the program becomes very large. So to make it …
In this tutorial, you will learn about the two functions that are used in String, gets() and puts() function in C. Learn more on String. How o read and write a line of text in C gets() and puts() function …
This tutorial contains about the String in C programming. You will learn about the declaration, initialization of String, and the use of string with examples. What is String? A string is defined as a series of characters or an array …
As we know by now that a pointer stores the address of the pointed variable. But it is not the only use, pointer also stores the address of another pointer forming a chain like structure. When we defined the pointer …
In this tutorial we will learn about Null Pointer, Void Pointer, Wild Pointer and more. If you want to know more on Pointers, click the link given below. Pointers in C There are eight different types of pointers, some of …
In C programming, just like we pass values of the variable as parameters in the function, we can also pass addresses as an argument in functions. When we pass pointers in the function that means we pass the address of …
In this tutorial, we will learn about the various operation that can be performed on Pointers. But before that if you do not know about the Pointer click the link below. Pointers in C Operators in C As the operation …
In programming, there are various tasks that can be achieved easily with the use of pointers such as dynamic memory allocation that needs pointers to perform. It is important to learn pointers for the programmer because it minimizes the execution …
Recursion refers to the process when a function calls itself inside that function directly or indirectly or in a cycle. And such functions are called recursive functions. However, the crucial part is the termination condition that is given to the …
In this article, we will learn about Sparse matrix, its use and its different representation. What is a sparse matrix? A matrix can be defined with a 2-dimensional array with column m and row n represented as m * n …