What are bitwise shift operators in c programming?


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

Post New Answer

More C Interview Questions

int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


What is nested structure?

0 Answers  


c program to manipulate x=1!+2!+3!+...+n! using recursion

1 Answers   TCS,


create an SINGLE LINKED LISTS and reverse the data in the lists completely

3 Answers  


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

0 Answers  


Describe the steps to insert data into a singly linked list.

0 Answers  


what is pointer

1 Answers   TCS,


discuss the steps needed to get a program from source code to executable in a system?

1 Answers  


What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }

1 Answers   Google,


Can I initialize unions?

0 Answers  


int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

4 Answers   TCS,


Whether there can be main inside another main?If so how does it work?

14 Answers   Sail, Wipro,


Categories