Pointers and Arrays
Pointer is a
variable that represents the location of a data item, such as variable or an
array element.
Within the
computer’s memory, every stored data item occupies one or more contiguous
memory cells.
Suppose v is
a variable that represents some particular data item. The compiler will
automatically assign memory cells to this data item. The data item can then be
accessed if we know the address of the first memory cell.
The address
of v’s memory location can be determined by the expression &v, where &
is the unary operator, called the address operator, that evaluates the address
of its operand.
Pointer
Declaration:
data_type
*ptr;
Example:
int i,*ptri;
float
f,*ptrf;
Pointer
Initialization:
int a = 10;
int *ptr;
//pointer declaration
ptr = &a
; //pointer initialization or,
int *ptr =
&a; //initialization and declaration together pointer variable always
points to same type of data.
Pointer
Arithmetic:
We can
perform arithmetic operations on pointer variable just as you can a numeric
value. As we know that, a pointer in C is a variable which is used to store the
memory address which is a numeric value. The arithmetic operations on pointer
variable effects the memory address pointed by pointer.
Valid
Pointer arithmetic operations are:
- · Adding a number to pointer.
- · Subtracting a number form a pointer.
- · Incrementing a pointer.
- · Decrementing a pointer.
- · Subtracting two pointers.
- · Comparison on two pointers. Invalid
Pointer Arithmetic Operations
- · Addition of two pointers.
- · Division of two pointers.
- · Multiplication of two pointers.
A code to understand pointer arithmetic:
#include<stdio.h>
int main()
{
int number=50;
int *p;
//pointer to int
p=&number; //stores the address of number variable
printf("Address of p variable is %u \n",p);
p=p+3; //adding 3 to pointer variable
printf("After adding 3: Address of p variable is %u
\n",p);
return 0;
}
Output:
Address of p
variable is 3214864300
After adding
3: Address of p variable is 3214864312
Pointer
as Function parameter:
Pointer in
function parameter list is used to hold address of argument passed during
function call.
This is also
known as call by reference. When a function is called by reference any change
made to the reference variable will effect the original variable.
C program to add numbers using call by reference:
#include<stdio.h>
void
swap(int *n1 ,int *n2)
{
int temp = *n1;
*n1 = *n2;
*n2 = temp;
}
int main()
{
int n1 = 20;
int n2 = 68;
printf("The
numbers before swapping n1 and n2 - %d , %d \n",n1, n2);
swap(&n1,
&n2);
printf("The
numbers after swapping n1 and n2 - %d , %d",n1, n2);
return 0;
}
Output:
The numbers
before swapping n1 and n2 – 20 , 68
The numbers after
swapping n1 and n2 – 68, 20
Arrays:
An array is
a data structure that contains a group of elements. Typically these elements
are all of the same data type, such as an integer or string. Arrays are
commonly used in computer programs to organize data so that a related set of
values can be easily sorted or searched.
Arrays a
kind of data structure that can store a fixed-size sequential collection of
elements of the same type. An array is used to store a collection of data, but
it is often more useful to think of an array as a collection of variables of
the same type.
A program to find the sum of elements in an array is as follows
Two-dimensional
Arrays:
The simplest
form of multidimensional array is the two-dimensional array. A two-dimensional
array is, in essence, a list of one-dimensional arrays. To declare a
two-dimensional integer array of size [x][y], you would write something as
follows −
type
array_name[ x ][ y ];
Initializing
Two-Dimensional Arrays:
Multidimensional arrays may be initialized by specifying bracketed values for each row.
Following is an array with 3 rows and each row has 4 columns.
int a[3][4]
= {
{0, 1, 2, 3} , /* initializers for row indexed
by 0 */
{4, 5, 6, 7} , /* initializers for row indexed
by 1 */
{8, 9, 10, 11} /* initializers for row indexed
by 2 */
};
The nested
braces, which indicate the intended row, are optional. The following
initialization is equivalent to the previous example −
int a[3][4]
= {0,1,2,3,4,5,6,7,8,9,10,11};
Accessing Two-Dimensional Array Elements:
#include
<stdio.h>
int main ()
{
/* an array with 5
rows and 2 columns*/
int a[5][2] = { {0,0}, {1,2}, {2,4}, {3,6},{4,8} };
int i, j;
/* output each array
element's value */
for
( i = 0 ; i < 5 ; i + + )
{
for ( j = 0 ; j < 2 ; j + + )
{
printf
(" a[%d][%d] = %d\n", i , j ,
a[i][j] );
}
}
return
0;
}
When the
above code is compiled and executed, it produces the following result −
a[0][0]: 0
a[0][1]: 0
a[1][0]: 1
a[1][1]: 2
a[2][0]: 2
a[2][1]: 4
a[3][0]: 3
a[3][1]: 6
a[4][0]: 4
a[4][1]: 8
Strings in C:
Strings are nothing but character arrays.
They can be declared as:
char str[100];
Here str is the name of the string and 100 is the length of the string
We can initialize the string as follows:
char str[100] = "Hi This is a String"
Various string functions available in C are:
0 Comments