FIFA-2022 Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
351 views
in Tutorial & Interview questions by Goeduhub's Expert (9.3k points)

Iterating through an array using pointers

1 Answer

0 like 0 dislike
by Goeduhub's Expert (9.3k points)
 
Best answer
#include <stdio.h>

#define SIZE (10)

int main()

{    

size_t i = 0;    

int *p = NULL;    

int a[SIZE];       /* Setting up the values to be i*i */    

for(i = 0; i < SIZE; ++i)    

{        

a[i] = i * i;    

}       /* Reading the values using pointers */    

for(p = a; p < a + SIZE; ++p)    

{        

printf("%d\n", *p);    

}

return 0;

}

Here, in the initialization of p in the first for loop condition, the array a decays to a pointer to its first element, as it would in almost all places where such an array variable is used.

Then, the ++p performs pointer arithmetic on the pointer p and walks one by one through the elements of the

array, and refers to them by dereferencing them with *p.

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...