โช Choose the correct option.
What is the final value of sum?
void main()
{
int sum= 1;
for (;sum <=9;)
printf("%d/n" ,++sum);
}
void main()
{
int sum= 1;
for (;sum <=9;)
printf("%d/n" ,++sum);
}