can a union be self-referenced?



can a union be self-referenced?..

Answer / thunder

Yes,unions also self-referenced,but it can share the common
memory location.

Is This Answer Correct ?    12 Yes 1 No

Post New Answer

More C Interview Questions

Which type of language is c?

0 Answers  


How to reverse a string using a recursive function, with swapping?

5 Answers  


Method Overloading exist in c ?

3 Answers   Wipro,


How to add two numbers with using function?

4 Answers  


Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com

0 Answers  






How can you allocate arrays or structures bigger than 64K?

0 Answers  


What are the advantages and disadvantages of a heap?

0 Answers  


What is const and volatile in c?

0 Answers  


What is an identifier?

0 Answers  


void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

5 Answers   Vector, Vector Solutions,


Categories