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 28563There are three bucket...Apple,Orange and Apple+Orange....On each Bucket one of the following labels are there..'A','O','A+O'...all this labels are not correctly patched on Bucket..identify which bucket contains What? You can not see bucket..u can pick any number of fruit from any basket...???
2628If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
2 8140Post New Persistent Interview Questions
what happens in conversion stage in job processing?
How to implement delegates in c#.net
Explain coalesce function?
How do I clear contents in excel without deleting?
What is a simple path?
What do you mean by ng-template?
What is Kalamkari.
Can we change the table name in sql?
What is the difference between ear, jar and war file?
Explain about arrays?
List the different types of files that can be made available with unix?
What is means by break activity in uipath?
Is react a library or a framework?
Explain how to resolve class instance out of the container in laravel?
Can inner class have constructor?