what is the use of bitfields & where do we use them?
Answer Posted / naveen shukla
Bit field is an idiom used in the computer programming
language to store a value as a short series of bits .
It is most commanly used when we know the fix width of int
type variable to be used .
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Why is it important to memset a variable, immediately after allocating memory to it ?
What is volatile keyword in c?
What are the types of unary operators?
Is c# a good language?
What is the size of array float a(10)?
What is the function of multilevel pointer in c?
What is the need of structure in c?
What is string function in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
application attempts to perform an operation?
For what purpose null pointer used?
What is c method?
What is the difference between text and binary i/o?
Differentiate abs() function from fabs() function.