我初學C和有一個簡單的問題:如何調用子功能只有一次內的週期性函數調用
我有一個函數myfunction的()這是定期調用每100毫秒。 在這個功能我有在的MyFunction初學者()第一次調用來調用其他的功能,但只有一次,但沒有周期性。
void myfunction() // function is called periodically every 100 ms
{
...
mySubfunction(); // this function have to be called only once in the first call of myFunction() and than skipped each time after that.
} ...
如何在c中實現這一點?
如果'mySubfunction'一般不應該在調用myfunction'時被調用,那麼'mySubfunction'不應該是'myfunction'的一部分! – mkrieger1