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
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 / sameer
The answer is A
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is an operator?
What is a structure in c language. how to initialise a structure in c?
Which is best book for data structures in c?
c program to compute AREA under integral
Write a code to generate divisors of an integer?
Explain #pragma statements.
How do you override a defined macro?
What do you mean by a sequential access file?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is #pragma statements?
What is string function c?
If I have a char * variable pointing to the name of a function ..
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
what are enumerations in C