Cosider the following C code segment:
int IsPrime(n)
{
int i, n;
for(i = 2, i < = sqrt(n); i ++)
if (n % i = = 0)
{
printf("Not Prime\n");
return 0;
}
return 1;
}
Let T(n) denote the number of times the for loop is executed by the program on input n. Which of the following is true?