Pointers
Every variable is a memory location
and every memory location has its address defined which can be accessed using
ampersand (&) operator, which denotes an address in memory.
The
pointers perform the function of storing the addresses of other variables in
the program. These variables could be of any type- char, int, function, array,
or other pointers.
an
example where we define a pointer storing an integer’s address in a program.
int
x = 10;
int*
p = &x;
Here,
the variable p is of pointer type, and it is pointing towards the address of
the x variable, which is of the integer type.
Declaration of a Pointer
declare a pointer before using it to
store any variable address. we can get the memory address of a variable with the reference operator &.
- The datatype indicates which type of variable
is the pointer pointing to in the code.
- The
asterisk (*) is used to declare a pointer.
type *var-name;
double *dp; /* pointer to a double */
float *fp;
/* pointer to a float */
char *ch
/* pointer to a character */
pointer = &variable;
#include <stdio.h>
{
int *ip;
/* pointer variable declaration */
printf("Address
stored in ip variable: %x\n", ip );
printf("Value
of *ip variable: %d\n", *ip );
}
In the example above, we used the pointer variable to get the memory
address of a variable (used together with the & reference operator).
to get the value of the variable the pointer
points to, by using the * operator (the dereference operator):
Example
int myAge = 24; // Variable
declaration
int* ptr = &myAge; // Pointer declaration
// Reference: Output the memory address of myAge with the pointer
(0x7ffe5367e044)
printf("%p\n", ptr);
// Dereference: Output the value of myAge with the pointer (24)
printf("%d\n", *ptr);
There
are four arithmetic operators that can be used on pointers:
Incrementing
(++)
Decrementing
(- -)
Addition
(+)
Subtraction
(-)
Syntax: int **ptr;
Eg.
int
var = 10;
// Let's say the address of this variable is 0xdbfeb8
int
*ptr = &var;
// Value in ptr is 0xdbfeb8 and say the address of ptr is
0xdbfeb0
int
**double_ptr = &ptr;
//
The value stored in double_ptr is 0xdbfeb0
Array and Pointers
int
arr [20];
int
*q [20] = &arr; // The q variable of the pointer type is pointing towards
the integer array’s address or the address of arr.
The memory address of the first element is the same as the name of the array:
An array is a block of sequential
data. Let's write a program to print addresses of array elements.
Eg.
#include
<stdio.h>
int main()
{
// Equivalent to scanf("%d",
&x[i]);
scanf("%d", x+i);
sum += *(x+i);
}
}
we
have declared an array x of 6 elements. To access elements of the
array, we have used pointers.
Function and pointers
void
display (int);
void(*q)
(int) = &show; // The q pointer is pointing towards the function’s address
in the program
In
Functions Pointers, function’s name can be used to get function’s address.
A
function can also be passed as an argument and can be returned from a function.
Declaration
function_return_type(*Pointer_name)
(function argument list)
eg.
int subtraction (int a, int b)
{
return a-b;
}
int
main ()
{
int (*fp) (int,int) =subtraction;
//Calling function using function pointer
int result = fp(5, 4);
printf(" Using function pointer we get
the result: %d",result);
return 0;
}
0 comments:
Post a Comment