单项选择题

下面C程序段中count++语句执行的次数为()。
for(int i = 1;i <= 11;i *= 2)
for(int j = 1; j <= i; j++)
count++;

A.15
B.16
C.31
D.32