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
When should I declare a function?
What are file streams?
what does static variable mean?
What is the role of this pointer?
What does typeof return in c?
Why is C language being considered a middle level language?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is the difference between local variable and global variable in c?
What is meant by int main ()?
Why does notstrcat(string, "!");Work?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is the difference between array and pointer?
What is FIFO?
What is the general form of function in c?
In a switch statement, explain what will happen if a break statement is omitted?