#include <stdio.h> int main() { int n = -5; n = n >> 2; printf("%d\n", n); }
-2
Previous Question Next Question
Your comments will be displayed only after manual approval.