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 28968Post New Persistent C Code Interview Questions
Can anyone help me in educating me in installing SAP 4.6C over windows server 2000. Please make it a step by step process, my career depends upon the success and failure of installation.
What is the average salary for chemical engineers?
What is a 16 core license?
Is possible to open a connection to a database with exclusive mode with JDBC?
sop of a uv visible spectrophotometer double beam elico model
How do I make an animated icon for my program?
Explain the path instructions in xaml?
How to give the answer for Expected CTC for MNC as well as for growing company?
What is DA?
What is the educational qualification required for marketing officer and asst. Manager posts?
What are the different versions of css?
1. What is the exact formula for one weber? for example,(one ampere = one coulomb electron of electrons crossing a point of conductor at one second. i.e, 1A=1Q/1sec)
What is out in jsp?
Tell me .net mobile emulators? : Microsoft dot net mobile
What we are looking for is to load properties of object dynamically as for our application the global repository will pretty huge. It will be really helpful to us if something similar to following functions of Winrunner is available in QTP. #Define descriptor auto strDesc; #set property in the descriptor Gui_desc_set_attr(strDesc,?Class?,?Edit?); --- put other properties #Add Edit box to GUI Map Gui_add(? ?,strWindowName,strEditboxName,strDesc);