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 / subbu
answer is d
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is floating point constants?
What is typedef?
.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 is an auto variable in c?
What are the applications of c language?
Why is a semicolon (;) put at the end of every program statement?
In which language linux is written?
Is null always equal to 0(zero)?
What is void c?
What are the general description for loop statement and available loop types in c?
Are the expressions * ptr ++ and ++ * ptr same?
What are the key features in c programming language?
largest Of three Number using without if condition?
What is meant by type casting?
How do you write a program which produces its own source code as output?