


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The basic questions and answers for understanding the concepts of pointers and arrays in programming. Topics covered include pointer definition, utility, dereferencing, address passing, arrays, array location, one-dimensional and two-dimensional arrays, and array operations such as reversing integers, finding the largest element, transposing matrices, and swapping values using pointers.
Typology: Lecture notes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



Int i = 5, *p, *t; p = & i ; t = & p ; Printf(“%d %d %d