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
Answers were Sorted based on User's Feedback
How do we open a binary file in Read/Write mode in C?
What does c mean before a date?
Explain how can you restore a redirected standard stream?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
main is a predefined or user define function if user defined why? if predefined whay?
What is identifier in c?
I have seen function declarations that look like this
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Why we use stdio h in c?
What is atoi and atof in c?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Is exit(status) truly equivalent to returning the same status from main?