what are bit fields in c?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Bitfields allow allocation of a specific number of bits to structure members.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Bitfields allow allocation of a specific number of bits to structure members.
Is This Answer Correct ? | 0 Yes | 0 No |
Do you know the difference between exit() and _exit() function in c?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
What are the various topologies? Which one is the most secure?
What will the preprocessor do for a program?
What is scanf_s in c?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
What is function definition in c?
WHAT IS C?
What are examples of structures?
What is the process to generate random numbers in c programming language?
Can we replace the struct function in tree syntax with a union?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.