what is the defrenece between structure and union
Answer Posted / renuka
structure is declared with the keyword struct and structure
variables occupy individual memory location.But Unoin is
declared with the keyword union and its variables are
allocated to a memory at which the highest byte of the
variable is declared.
Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
Explain is it valid to address one element beyond the end of an array?
What does c mean in standard form?
Write programs for String Reversal & Palindrome check
What is the general form of function in c?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain function?
Explain 'far' and 'near' pointers in c.
What is c programming structure?
Explain the Difference between the New and Malloc keyword.
Describe the modifier in c?
What is .obj file in c?
What is volatile variable how do you declare it?
What is the purpose of sprintf() function?
C program to find all possible outcomes of a dice?
Why #include is used in c language?