What is the difference between a structure and a union?
Answers were Sorted based on User's Feedback
Answer / 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 |
Structure: All members have their own memory location.
Union: All members share the same memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is pointer to pointer in c language?
Given an unsigned integer, find if the number is power of 2?
What is the scope of static variables in c language?
what is difference between procedural language and functional language ?
Write a programe print the sum of series 0,1,2,.....10
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Why isn't any of this standardized in c? Any real program has to do some of these things.
How can I make it pause before closing the program output window?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What's wrong with "char *p; *p = malloc(10);"?
Array is an lvalue or not?
How to print "Hi World" without using semi colon?