C++ Pointer | pointer and arrays | My CS Tutorial - My CS Tutorial

Breaking

Programming languages full tutorial and programs, exam papers, visual basic( Vb.net ), information of new technologies and more....

Wednesday, July 22, 2020

C++ Pointer | pointer and arrays | My CS Tutorial

Pointer in C++ programing | Pointer in C++ | Example | How to use a pointer | Pointer in C++ language | Increment pointer address & pointer value | pointer and array |
Traversing the array using Pointers 
| My CS Tutorial

Pointer in c++ | My CS Tutorial

POINTERS IN C++ PROGRAMMING


A pointer is a variable in C++ that points to a memory location. It does not directly contain a value like int or float but just a memory direction. One can reserve some memory on the direction marked by the pointer and use it to store some values on it, later on these values are indirectly accesed through
the pointer variable.

Pointer is a variable in C++ that holds the address of another variable. They have data type just like variables, for example an integer type pointer can hold the address of an integer variable and an character type pointer can hold the address of char variable.

Syntax of pointer

data_type *pointer_name;

declare a pointer

/* This pointer p can hold the address of an integer
 * variable, here p is a pointer and var is just a
 * simple integer variable
 */
int *p, var

Assignment

As I mentioned above, an integer type pointer can hold the address of another int variable. Here we have an integer variable var and pointer p holds the address of var. To assign the address of variable to pointer we use ampersand symbol (&).

/* This is how you assign the address of another variable
 * to the pointer
 */
p = &var;


How to use it?

// This will print the address of variable var
cout<<&var;  

/* This will also print the address of variable
 * var because the pointer p holds the address of var
 */
cout<<p;  

/* This will print the value of var, This is
 * important, this is how we access the value of
 * variable through pointer
*/
cout<<*p;

Example of Pointer

Lets take a simple example to understand what we discussed above.

#include <iostream>
using namespace std;
int main(){
   //Pointer declaration
   int *p, var=101;

   //Assignment
   p = &var;

   cout<<"Address of var: "<<&var<<endl;
   cout<<"Address of var: "<<p<<endl;
   cout<<"Address of p: "<<&p<<endl;
   cout<<"Value of var: "<<*p;
   return 0;
}

Output:

Address of var: 0x7fff5dfffc0c
Address of var: 0x7fff5dfffc0c
Address of p: 0x7fff5dfffc10
Value of var: 101

Pointer and arrays

While handling arrays with pointers you need to take care few things. First and very important point to note regarding arrays is that the array name alone represents the base address of array so while assigning the address of array to pointer don’t use ampersand sign(&). Do it like this:
Correct: Because arr represent the address of array.

p = arr;
Incorrect:

p = &arr;

Example: Traversing the array using Pointers

#include <iostream>
using namespace std;
int main(){
   //Pointer declaration
   int *p;
   //Array declaration
   int arr[]={1, 2, 3, 4, 5, 6};
   //Assignment
   p = arr;
   for(int i=0; i<6;i++){
     cout<<*p<<endl;
     //++ moves the pointer to next int position
     p++;
   }
   return 0;
}
Output:

1
2
3
4
5
6

increment pointer address and pointer’s value

When we are accessing the value of a variable through pointer, sometimes we just need to increment or decrement the value of variable though it or we may need to move the pointer to next int position(just like we did above while working with arrays). The ++ operator is used for this purpose. One of the example of ++ operator we have seen above where we traversed the array using pointer by incrementing the pointer value using ++ operator. Lets see few more cases.

// Pointer moves to the next int position (as if it was an array)
p++;
// Pointer moves to the next int position (as if it was an array)
++p;

/* All the following three cases are same they increment the value
 * of variable that the pointer p points.
 */
++*p;
++(*p);
++*(p);


Pointer in C++ programing | Pointer in C++ | Example | How to use a pointer | Pointer in C++ language | Increment pointer address & pointer value | pointer of arrays | My CS Tutorial

_______________________________________


Please share this post and blog link with your friends.For more programs use this blog.

If you have any problem, please comment in comment box, subscribe this blog for notifications of new post on your email and follow this blog.If you have any method of this tutorial or program or want to give any suggestion send email on hc78326@gmail.com

Created by-- HARSH CHAUHAN

No comments:

Post a Comment