Explain the difference between struct and union.
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• Struct: All members occupy separate memory.
• Union: All members share the same memory.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• Struct: All members occupy separate memory.
• Union: All members share the same memory.
Is This Answer Correct ? | 0 Yes | 0 No |
convert 0.9375 to binary
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
how to create duplicate link list using C???
What is FIFO?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What are the different types of C instructions?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Where static variables are stored in c?
What is wrong with this program statement?
what is a static function
what is the diff b/w static and non static variables in C. Give some examples plz.
What is the purpose of realloc()?