In this C Programming tutorial, we will discuss 2D character arrays in detail and how to declare, initialize and use 2D character arrays or String arrays.
Library functions are inbuilt functions provided by the compilers. These library functions can be easily accessed by importing the particular header file which contains the library function. Similarly, there are
A string is basically a character array which terminates with a ‘\0’. It can have alphabets in both cases, digits and special characters. It is like having a
Arrays are passed to the functions as arguments. Like variables, a whole array can be passed to a function. We already know that functions make it so easy for us to
Pointers are variables that contain the memory address of another variable. It enables the programmer to directly access the memory location and hence the value stored at it.
Recursion is a process of calling a function within the same function again and again till the condition is satisfied. We have already seen how functions can be
An important feature of C programming(and almost every other programming language) is that it allows us to create our own functions. In this tutorial, we will be focusing
A function is a group of statements that are executed whenever the function is called to perform a specific designated task. C programming makes use of modularity to remove
In our previous tutorials we have discussed that C programming allows multiple dimensions in arrays like 1D arrays, 2D arrays. Similarly, we can have three or more dimensions too.