Hello VBWorld,

How do you stop an infinite loop error? I got this error while i was deleting a record from a database. I'm confused where to use the fflush(stdout)...

Please advise...

if (rec >= 0 && rec < body)
{
while(rec+ 1 < body)
{
students[index] = students[index + 1];
}
body--;
}
else
{
fprintf(stderr, "Record out of range.");
}


Thanks.
Cory