N O S I E R
+ A S T R A L
----------------
7 2 5 6 1 3
Answer Posted / yfrkgf
INLETS
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
How to declare a variable?
Explain the difference between #include "..." And #include <...> In c?
What is a const pointer?
Explain what header files do I need in order to define the standard library functions I use?
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); }
Is it possible to pass an entire structure to functions?
How to write a multi-statement macro?
What are identifiers in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
while initialization of array why we use a[][2] why not a[2][]...?
Disadvantages of C language.
What do you mean by a local block?
code for replace tabs with equivalent number of blanks
What is c++ used for today?
What is #ifdef ? What is its application?