diff .between strcture and union
Answers were Sorted based on User's Feedback
Answer / sruthy
union allocates the memory equal to the maximum memory
required by the member of the union but structure allocates
the memory equal to the total memory required by the members
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / revathi pawar
structure is the set of different datatype whereas the
struct is the keyword
union is the one where will not print or give correct ouptut
whereas it will give the address of tat particular string or
no given
union s the keyword
| Is This Answer Correct ? | 1 Yes | 7 No |
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What are the back slash character constants or escape sequence charactersavailable in c?
How do we declare variables in c?
write a prgram of swapping with 2 valiables
what is c programing
how to generate the length of a string without using len funtion?
Who had beaten up hooligan "CHAKULI" in his early college days?
Explain how can you check to see whether a symbol is defined?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Is it possible to pass an entire structure to functions?
What are global variables?
what is the return type of printf