struct node {struct node*temp,*new}
prinf("%d",sizeof(struct node));
Answer Posted / aravind
ok guys.
Here first structure is not ended with a
termination.Structure is nested with another
structure.Usually pointer takes 4 bytes for GCC compiler
and here he defined 2 pointers so o/p would be 8 bytes but
compiler shows error of being undeclared structure
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is hashing in c language?
What is structure of c program?
What is the difference between the = symbol and == symbol?
What is #error and use of it?
Explain pointers in c programming?
Combinations of fibanocci prime series
What does stand for?
What is modeling?
What are the preprocessor categories?
What is scope of variable in c?
What is the full form of getch?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are static variables in c?
I have a varargs function which accepts a float parameter?
What are the advantages of union?