can you tell me how to write test cases for payments, receipts, inward clearing, outward clearing, A/c statements ?
4158Post New HP Test Cases Interview Questions
How you integrated your automated scripts with testdirector?
How do I know if my motherboard is 32 bit or 64 bit?
What are the precautions to be taken while maintaining the 3keh table for profit center accounting?
what is binomial nomenclature?
Is empty string python?
What is mysql and mysqli?
What are who id and what id in activities?
What is Pega and Why Pega?
How does pressure transmitter electronics sensor be used to transmit level measurement parameter?
Mention what are the two ways for adding constraints to a route?
How are sparks created?
what the daily rutien of sunday
What is double in java?
What is textbox control of .net mobile? : Microsoft dot net mobile
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); }