In the following 'C' program, find out the error in the 'while' loop, if any?
main( )
{
int i = 1;
while( )
{
printf("%d", i++) ;
if (i>10)
break;
}
}
a. The while loop should be replaced by for loop
b. No error
c. There should be at least a semicolon in the while ()
d. The connection in the while loop is a must