A pointer variable which stores base address of an array of same type is called pointer to array or pointer of array.
एक पॉइंटर वेरिएबल जो उसी प्रकार के अरे का बेस एड्रेस रखता है पॉइंटर ऑफ़ अरे कहलाता है।
Syntax :-
data_type array_name[size], *ptr_name;
ptr_name=array_name;
C program for pointer to array:-
#include<stdio.h>
#include<conio.h>
void main(){
int list[5],*p;
clrscr( );
for(i=0;i<=5;i++){
printf("enter five integer numbers\n");
scanf("%d",&list[i]);
p=list;
printf("elements of list array is:\n");
for(i=0;i<5;i++){
printf( "%d",*p++);
}
getch();
}
No comments:
Post a Comment