CSE MCQs :: C-MCQs
- Members of a union are accessed as________________.
-
Which of the following share a similarity in syntax?
1. Union, 2. Structure, 3. Arrays and 4. Pointers - Which of the following data types are accepted while declaring bit-fields?
-
For what minimum value of x in a 32-bit Linux OS would make the size of s equal to 8 bytes?
struct temp
{
int a : 13;
int b : 8;
int c : x;
}s; -
In the declaration of bit-fields,
struct-declarator:
declarator
type-specifier declarator opt : constant-expression
The constant-expression specifies - Which of the following is not allowed?