使得循环中某部分程序只执行一次的技巧

set  a flag, 使得某部分程序只执行一次。

// *********************************************
// @brief  : the code for c experience
// @author : mas
// *********************************************

#include    

int once(int testflag)
{
    if(testflag==0)
    {
        return 1;
    }
    printf("the section operation once!");      // the section operation once!
    testflag=0;

}

int main(void)
{
    int testflag=1;

    while(1)
    {
        once(testflag);  
    }

    getchar();
    return 0;
}

你可能感兴趣的:(AI,人工智能)