Tell me the use of bit field in c language?


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

Post New Answer

More C Interview Questions

What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


What is const volatile variable in c?

0 Answers  


How do you sort filenames in a directory?

0 Answers  


what is the difference between definition and declaration? give me some examples.

2 Answers   TCS,


Explain what is a 'locale'?

0 Answers  






How can we allocate array or structure bigger than 64kb?

2 Answers   CSC,


what is the different between data structure and data type?

1 Answers   Ignou,


find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }

10 Answers   Amdocs, TCS,


Explain how can I convert a string to a number?

0 Answers  


Why do we need a structure?

0 Answers  


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

0 Answers  


What is atoi and atof in c?

0 Answers  


Categories