Q. Output is
Code:#include <stdio.h>
void main() {
int a = 36;
int b = 9;
printf(“%d”, a>>a/b-2);
return 0;
}
β
Correct Answer: (C)
9
#include <stdio.h>
void main() {
int a = 36;
int b = 9;
printf(“%d”, a>>a/b-2);
return 0;
}
You must be Logged in to update hint/solution