单选题 以下程序的运行结果是______。
#include<stdio.h>
int main()
{
int a=5, b=7, c, k;
c=a b;
k=b<<2;
printf("c=%d k=%d/n", c, k);
return 0;
}
【正确答案】 D
【答案解析】