Suppose in the Report Program I want to pass data to another Report Program ..how will you do that one?
4 12252Post New Satyam Interview Questions
What is the use of mo: security profile, while configure multiorg?
How can you find the ua tracking code?
Hi iam a begginer or rather new stsrter to QTP and strugling to start as i have to start writing the automated scripts for the existing manual testing could some one send me some tips ans tricks for a jump start. Any help is greatly appreciated
what are the requirements for being a animator?
What is the concept of inheritance in .net?
What is an iphone app?
What nature of work can be automated?
What is a 'division'?
What is package in laravel? Name some laravel packages?
Is it true that objects don't always get destroyed immediately when the last reference goes away?
How synchronization channel work in cdma?
How do I erase part of a picture in word?
What is the RME and explain the full form and what is the RME work?
Which FM do you use to find out who is reporting to whom
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }