main( ) { static int a[ ] = {0,1,2,3,4}; int *p[ ] = {a,a+1,a+2,a+3,a+4}; int **ptr = p; ptr++; printf(“\n %d %d %d”, ptr-p, *ptr-a, **ptr); *ptr++; printf(“\n %d %d %d”, ptr-p, *ptr-a, **ptr); *++ptr; printf(“\n %d %d %d”, ptr-p, *ptr-a, **ptr); ++*ptr; printf(“\n %d %d %d”, ptr-p, *ptr-a, **ptr); }
2 28963Post New Persistent C Code Interview Questions
Explain the request life cycle of laravel?
what is variable substitution?where we will find it?
How to Calibrate Ultrasonic flow Transmitter in Field
What is setattribute in servlet?
What is 1f in c?
What is the difference between array and pointer?
Explain first() operation in Apache Spark?
How Session use Cookies in State Management?
How to use script on Domain ?
what is per unit calculation?looking for simple and strong explanation thk u
What are the uses of c++ in the real world?
How many rows can a mysql table hold?
What does it mean to declare a member function as virtual in C++?
What are the laws required by civilization?
What do you understand by casting in java language?