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