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

Answers were Sorted based on User's Feedback



Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be ar..

Answer / murali

d) All

Is This Answer Correct ?    3 Yes 0 No

Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be ar..

Answer / abhradeep chatterjee

all answers are correct. so the final answer is D

Is This Answer Correct ?    3 Yes 0 No

Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be ar..

Answer / rahul

C

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

Do pointers take up memory?

1 Answers  


Differentiate between null and void pointers.

0 Answers   TCS,


write a program wch produces its own source code aas its output?

1 Answers   IonIdea,


When a c file is executed there are many files that are automatically opened what are they files?

1 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"

6 Answers   IBM,


What is c value paradox explain?

1 Answers  


What are shell structures used for?

1 Answers  


Explain what are the different data types in c?

1 Answers  


When should a far pointer be used?

1 Answers   Aspire, Infogain,


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


what is bitwise operator?

1 Answers   IBM,


How to reverse a string using a recursive function, with swapping?

5 Answers  


Categories