Strings in C

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 …

Read moreStrings in C

C – Pointers

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 …

Read moreC – Pointers

C – Recursion

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 …

Read moreC – Recursion