What is the difference between a structure and a union?
Answer Posted / nashiinformaticssolutions
Structure: All members have their own memory location.
Union: All members share the same memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are preprocessor directives?
What are c header files?
How are pointers declared in c?
What are the key features in c programming language?
Explain the bubble sort algorithm.
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What are terms in math?
Describe the order of precedence with regards to operators in C.
What are the salient features of c languages?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How do I convert a string to all upper or lower case?
What is meant by errors and debugging?
How can I find the modification date and time of a file?
What are the benefits of organizational structure?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory