What is the most likely problem with this script ()<br /> VAR=1  <br /> ((VAR=$VAR+1))   <br /> while [ $VAR -It 10 ]   <br /> do  <br /> echo $VAR <br /> done
A、#!/bin/ksh line is missing
B、Variable name VAR is not properly initialized
C、Loop variable is not incremented inside the loop
D、Replace brackets with braces