What are different types of operators?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using Unions?
What are actual arguments?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
write an interactive program to generate the divisors of a given integer.
how to find anagram without using string functions using only loops in c programming
which is faster execution: loops or recursion?
Is array name a pointer?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What are pointers? Why are they used?
What is page thrashing?
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); }