Answer Posted / nirbhaykumar
a=2
| Is This Answer Correct ? | 16 Yes | 10 No |
Post New Answer View All Answers
Can you explain the four storage classes in C?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Explain void pointer?
What are pointers? Why are they used?
how could explain about job profile
What does s c mean on snapchat?
What are multidimensional arrays?
What is the deal on sprintf_s return value?
What are called c variables?
Difference between MAC vs. IP Addressing
Why do we need a structure?
What is property type c?
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); }
What is use of pointer?
What is the function of this pointer?