Explain the use of bit fieild.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is Bitwise Operator and how it works?

1 Answers  


#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain

2 Answers  


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

0 Answers  


How can this be legal c?

0 Answers  






what is the difference between %d and %*d in c languaga?

7 Answers   TCS,


What’s the special use of UNIONS?

0 Answers   ADP,


What does %d do in c?

0 Answers  


find largest of 3 no

8 Answers  


What are pointers? Why are they used?

0 Answers  


Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;

18 Answers   Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,


How can you check to see whether a symbol is defined?

0 Answers  


Categories