单项选择题

以下程序运行后的输出结果是
#include<stdio.h>
main()
int a=5, b=1, t;
 t=(a<<2)|b); printf("%d\n", t);

A) 21
B) 11
C) 6
D) 1