Tagged Questions

4
votes
8answers
326 views

How to break an infinite for(;;) loop in C ?

I have a vital infinite for loop that allows a sensor to keep updating its values. However I would like to break that for loop when another sensor brings in new values. How can I switch from one ...
1
vote
6answers
655 views

Best infinite loop [closed]

Possible Duplicate: while (1) Vs. for (;;) Is there a speed difference? Hi, Which is better,faster and more optimized way to implement infinite loop - for(;;) or while(1)? and why?
0
votes
4answers
126 views

Why does this piece of C code end up in an infinite loop?

I have been trying to fix the infinite loop in this code. However, I could not understand why an infinite loop occurs. This code is trying to sort jobs from the smallest to highest before being ...
0
votes
1answer
60 views

How to handle looping and runtime error program from php

I want to create a web that can accept C code program, compile, and run the program on my server using php & gcc. But i can't handle infinite loop program, it's give me out of memory. And for ...