Study the Following Points:
a.One Cannot Take the address of a Bit Field
b.bit fields cannot be arrayed
c.Bit-Fields are machine Dependant
d.Bit-fields cannot be declared as static
1. Which of the Following Statements are true w.r.t Bit-
Fields
A)a,b&c B)Only a & b C)Only c D)All
Answer Posted / abhradeep chatterjee
all answers are correct. so the final answer is D
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Do you know what are the properties of union in c?
What's a good way to check for "close enough" floating-point equality?
Who developed c language?
What is string constants?
What are types of functions?
What is #include stdio h?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the difference between array and pointer?
What is getche() function?
Differentiate call by value and call by reference?
What is the method to save data in stack data structure type?
how can I convert a string to a number?
What is the difference between struct and typedef struct in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }