What are the Pointers? The pointer is an address variable that is meant for storing the address of data, not the data itself. Normal variables are data variables, but the pointers are address variables, and pointers are used for indirectly accessing the data. Why do we need to access dataContinue Reading

Union in C Programming Langauge: A union is a collection of different types of data elements in a single entity. It is a collection of primitive and derived datatype variables. By using a union, we can create user-defined data type elements. The size of a union is the max sizeContinue Reading

What is Structure in C? The structure can be defined as a collection of related data members under one name. Those data members may be of similar type or may be of dissimilar type. So usually it is defined as a collection of dissimilar data items under one name. StructureContinue Reading

Permutation of Strings in C: In this article, we will see how to find permutations of a string. First of all, we understand what does it mean means by permutations. Then we will see how to find permutations. There is more than one method. In this article, we’ll show youContinue Reading

How to Reverse a String in C Language? In this article, we will see how to reverse a String. Here we have taken an example. We have taken a string ‘Ruby’. We want to reverse this string. The reverse string will be: ‘ybuR’. For reversing, there is more than oneContinue Reading