Answer Posted / ravi joshi
Bit fields can only be declared inside a structure or a
union, and allow you to specify some very small objects of a
given number of bits in length. Their usefulness is limited
and they aren't seen in many programs, but we'll deal with
them anyway.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are the different types of errors?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Explain the term printf() and scanf() used in c language?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is pointer in c?
What's the difference between constant char *p and char * constant p?
Why array is used in c?
Not all reserved words are written in lowercase. TRUE or FALSE?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are identifiers c?
Explain a pre-processor and its advantages.
What functions are used for dynamic memory allocation in c language?
What is the difference between break and continue?
What is scope and lifetime of a variable in c?
Explain output of printf("Hello World"-'A'+'B'); ?