单选题 下列程序运行时,两次单击窗体后,显示的结果是( )。
Private Sub Form_Click()
Dim b As Integer
Static c As Integer
b=b+2
c=c+2
Print "b=";b;"c=";c
End Sub

【正确答案】 C
【答案解析】