Hi all…. In this tutorial we are going to see pointers in C. This is very big concept. So I have split this into two parts. Click Here for Part 2 Let’s start.
Introduction
The concept of pointers is one of the most powerful fundamentals of C/C++ language. Through pointers a developer can directly access memory from his/her code which makes memory related operations very fast. But, as always, with great power comes great responsibility. A developer has to very carefully make use of pointers in order to avoid some problems that can be nightmare to debug.