C: Run two functions at the same time?
Posted
by Daniel
on Stack Overflow
See other posts from Stack Overflow
or by Daniel
Published on 2010-06-16T05:54:49Z
Indexed on
2010/06/16
6:02 UTC
Read the original article
Hit count: 138
Filed under:
c
Hi,
I have two functions in C:
function1(){
// do something
}
function2(){
// do something while doing that
}
How would i run these two at the exact same time? If possible, please provide an example!
© Stack Overflow or respective owner