|
-
Dec 2nd, 2001, 11:16 PM
#1
Thread Starter
New Member
Infinite Loop error while deleting a record
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|