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
Answer / abhradeep chatterjee
all answers are correct. so the final answer is D
| Is This Answer Correct ? | 3 Yes | 0 No |
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Write a program to check whether a number is prime or not using c?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Is null valid for pointers to functions?
What is the purpose of main( ) in c language?
What is a Genralised LInked List?? Please give a detailed explation of it..
What is a symbolic constant?
How can I dynamically allocate arrays?
how can I convert a string to a number?
Write a program that an operator and two operands read from input operand operator on the implementation and results display.