Tell me the use of bit field in c language?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
What is s or c?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
Explain modulus operator. What are the restrictions of a modulus operator?
What is difference between structure and union with example?
What is an example of structure?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
In a header file whether functions are declared or defined?
Why are all header files not declared in every c program?
Do you know the purpose of 'register' keyword?
What is the difference between ++a and a++?