linux延時一秒函數

#include<stdio.h>
#include<time.h>
int main()
{
    int a;
    int t,s;
    for(a=0;;a++)
    {
        t=time(0);
        
        printf("%d\n",a);  
        
        while (t==time(0))
        {
            ;        
        } 
    }
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章