Answer Posted / anitya
In C We can not address the Bit value.
In Embedded C we can Address the Bit value.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the __date__ and __time__ preprocessor commands?
What is time complexity c?
Is c easy to learn?
What is an identifier?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Are the outer parentheses in return statements really optional?
What is wrong with this program statement?
What is extern storage class in c?
What is NULL pointer?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is typedef example?
What is calloc()?
What is use of bit field?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Why pointers are used in c?