array in c

Array in C/C++ Language

In this blog post, you will learn the arrays and their working. You will learn how to declare, initialize and access elements of an array with the help of some programming examples. Also some important points related to the array that should you know. I will start from the beginner and explain each topic very

Array in C/C++ Language Read More »

How to use arithmetic operator with pointers

Pointer arithmetic in C programming

Sometimes we need to perform arithmetic operations on pointers. But before using arithmetic operators with pointers we need to understand that we can not use each arithmetic operators with pointers. Pointer arithmetic is slightly different from arithmetic we normally use in our daily life.   We also need to remember that we cannot use the

Pointer arithmetic in C programming Read More »