Discussion :: Bitwise Operators
-
What will be the output of the program?
#include
int main() { printf("%d >> %d %d >> %d\n", 4 >> 1, 8 >> 1); return 0; }
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment