What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include  
int main() {
printf("%d >> %d %d >> %d ", 4 >> 1, 8 >> 1);
return 0;
}

A. 4 1 8 1
B. 4 >>1 8>>1
C. 2 >> 4 Garbage value >> Garbage value
D. 44653

Leave a Comment