Contact Us || Privacy Policy || About Us |
|
Concept of PointersThere are following concept of pointers that is 1) Pointer ArithmeticThere are four arithmetic operators can be used in pointers that is: ++, --, +, - 2) Array of PointersHold a number of pointers when you can define arrays . 3) Pointer to pointerC allows you have to use pointer to pointer and so on. 4) Passing pointers to functionsPassing an argument by reference or address enable the passed argument to be changed in the calling function by the called function. 5) Return pointer from functionsC allows a function to return a pointer to the local variable, static variable, and dynamically allocated memory . |