what are bit fields in c?


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

Post New Answer

More C Interview Questions

how logic is used

0 Answers  


Which weighs more, a gram of feathers or a gram of gold?

2 Answers  


int i=~0; uint j=(uint)i; j++; printf(“%d”,j);

1 Answers  


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


biggest of two no's with out using if condition statement

5 Answers  






Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code

1 Answers  


A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??

3 Answers   TCS,


What is the difference between void main() and void main (void) give example programme?

0 Answers  


1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?

0 Answers  


What are enumerated types?

0 Answers  


What is a pointer variable in c language?

0 Answers  


Write a program that his output * *** *****

1 Answers  


Categories