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 / dharanidhar
D
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain how can I manipulate strings of multibyte characters?
What is the mean of function?
How a string is stored in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Why we use void main in c?
why programs in c are running with out #include
What is NULL pointer?
Differentiate call by value and call by reference?
main() { printf("hello"); fork(); }
What is pragma in c?
Write a program in c to replace any vowel in a string with z?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain how do you determine whether to use a stream function or a low-level function?
How can you tell whether two strings are the same?