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
Write a C program to perform some of the operation which can be performed using Single linked list
What is the hardest programming language?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What is a loop?
What is assignment operator?
What are the keywords in c?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
how to construct a simulator keeping the logical boolean gates in c
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What is static memory allocation? Explain
What is assert and when would I use it?
What is int main () in c?