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 27137There 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...???
2316If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
2 7408Post New Persistent Interview Questions
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?
Will Uber cause city congestion?
What is the central scheduling calendar?
Can you create your own sps for system wise?
What do you mean by dimensional modeling and relational modeling? Which one do you use in dw? Why?
How does xaml relate to biztalk/.net? : xaml
Where normally afd's are stored?
Sql server reporting services vs. Crystal reports.
Can I run exe files on windows tablet?
A project is considered successful when: A. The product of the project has been manufactured. B. The project sponsor announces the completion of the project. C. The product of the project is turned over to the operations area to handle the ongoing aspects of the project. D. The project meets or exceeds the expectations of the stakeholders.
Where is average function in excel?
what is meant by safety upper limit and safety lower limit in all the deltas tell me one by one for time stamp, calender day and numberic pointer?
What is csrf_field () in laravel?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How can you expose a property ?