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 |
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
How to write a multi-statement macro?
Explain what is the concatenation operator?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Why Modern OS are interrupt driven?Give an example
what is recursion in C
what are two kinds of java
write a c program to find the probability of random numbers between 1-1000
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Why dont c comments nest?
What is c variable?
What is printf () in c?