what is the associativity of bitwise OR operator?



what is the associativity of bitwise OR operator?..

Answer / ravi joshi

left-to-right

Is This Answer Correct ?    10 Yes 0 No

Post New Answer

More C Interview Questions

how to create duplicate link list using C???

0 Answers  


how to find string length wihtout using c function?

6 Answers  


Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......

2 Answers  


what is the difference between structure and union?

3 Answers  


What is union and structure in c?

0 Answers  






1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1

4 Answers  


How to delete a node from linked list w/o using collectons?

0 Answers   Zycus Infotech,


What is the difference between printf and scanf )?

0 Answers  


main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }

6 Answers  


Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()

2 Answers   Accenture, TCS,


How can I find out how much memory is available?

1 Answers   Persistent,


What is restrict keyword in c?

0 Answers  


Categories