vote up 1 vote down star

Hi!

Does anyone know why if i put a printf just before a delay it waits until the delay is finished before it prints de message?

Code1 with sleep():

int main (void)
{
    printf ("hi world");
    system("sleep 3");    
}

Code2 with a self implemented delay:

void delay(float sec)
{
    time_t start;
    time_t current;
    time(&start);
    do{
        time(&current);
    }while(difftime(current,start) < sec);
}
int main (void)
{
    printf ("hi world");
    delay(3);    
}

And if:

printf ("hi world");
delay(3);    
printf ("hi world");
delay(3);

it waits until the sum of sleeps and then it prints the messages at the same time

Why does this happen?

UPDATE: I writed delay("sleep 3") when i called delay, i meant delay(3). Corrected

flag

25% accept rate
Also, for better delay functionality, consider the standard POSIX sleep() function, declared in unistd.h – laalto Oct 7 at 7:54

6 Answers

vote up 5 vote down check

the standard output is not flush until you output a '\n' char.

try printf ("hi world\n");

link|flag
You are right ;).You bith are right (Ben & FigBug). Thx a lot for the quick answer ;) – Xidobix Oct 6 at 23:31
I don't think simply adding a \n is a guarantee that the output will be flushed. I just happens to work for you, in this case. Better to use fflush() as FigBug suggests. – mch Oct 27 at 21:02
vote up 15 vote down

printf buffers it's output until a newline is output.

Add a fflush(stdout); to flush the buffers on demand.

link|flag
vote up 5 vote down

Normally, standard output is buffered until you either:

  • output a \n character
  • call fflush(stdout)

Do one of these things before calling delay() and you should see your output.

link|flag
2  
Note that writing a newline typically only flushes the output if stdout is a terminal; if it's being redirected to a file, writing a newline will not cause it to flush. – Adam Rosenfield Oct 7 at 3:48
vote up 0 vote down

When you call printf, you don't print anything until really necessary: until either the buffer fulls up, or you add a new line. Or you explicitly flush it.

So, you can either do

printf("Something\n");
delay();

or

printf("Something");
fflush(stdout);
delay();
link|flag
vote up -1 vote down

Technically that shouldn't even compile. In the delay("sleep 3") call you're trying to convert a const char * to a float. It should be:

void delay (float sec)
{
    // ...
}

delay(3);
link|flag
It will compile, but it will treat a pointer as a float, which is probably going to do bad things. It won't compile if you crank up your compiler's warnings sufficiently. – Chris Lutz Oct 6 at 23:42
@Chris yeah i figured it might even just convert the pointer to a float, but like you said, it ain't a good thing! – Nick Bedford Oct 7 at 0:03
The compiler would probably at least complain about it anyway – Nick Bedford Oct 7 at 0:03
i meant delay(3). Type error ;), i just updated the question. Thx for make me note it – Xidobix Oct 7 at 3:45
why the negative vote? – Nick Bedford Oct 7 at 4:58
vote up -2 vote down

Because printf goes to stdout, which is buffered. The buffer is only flushed after it either fills up (not likely in your case) or when the program exits (after the sleep). Try fprintf to stderr instead. You can also change stdout to be line buffered with setlinebuf(stdout).

link|flag
1  
The buffer will be flushed if you call fflush. If stdout is connected to a terminal, the buffer will also be flushed following a newline. – Sinan Ünür Oct 6 at 23:34
You are right; I missed the fact that he had no newline on his printf and therefore assumed he wasn't connected to a terminal. – Sonja Oct 6 at 23:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.