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 wrong with this initialization?
What is %g in c?
What are structure types in C?
What does nil mean in c?
while initialization of array why we use a[][2] why not a[2][]...?
Why we use int main and void main?
What is null pointer constant?
What is the use of structure padding in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
I have seen function declarations that look like this
Explain the advantages of using macro in c language?
What are two dimensional arrays alternatively called as?
What is "Hungarian Notation"?
What is atoi and atof in c?
What is declaration and definition in c?