R
Q. Assume that objects of the type short, float and long occupy 2 bytes, 4 bytes and 8 bytes, respectively. The memory requirement for variable t, ignoring alignment considerations, is
struct { short s[5]; union { float y; long z; }u; } t;
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which is not a valid C variable name?
Q. What is the ASCII value of NULL or \0?
Q. If m=5, y=m++ then value of y and m would be _____ and _______
Q. What is the range of a signed char variable in C?
Q. What is the meaning of the following C statement?
Discusssion
Login to discuss.