好的,所以我的問題是,我該如何製作一個基本上執行程序其餘部分的程序,例如12pm。例如一些非現實的代碼:程序在特定時間執行
#include <stdio.h>
#include <time.h>
int main()
{
Get_time() //Gets system time
if(time() == 254pm){ //if time is 2:54pm
printf("Time: 2:54pm\n");
}
else printf("Program can not execute at this time.\n");
return 0;
}
有誰知道我該怎麼做類似的事情?
您是否試圖重塑['cron'](http://en.wikipedia.org/wiki/Cron)? –
不,只需要我的程序在特定時間執行其餘的代碼。對於windows。 – shix
或[Windows計劃程序](http://support.microsoft.com/kb/308569),因爲這具體被標記爲'winapi'。 「Scheduler API」記錄在[這裏](http://msdn.microsoft.com/en-us/library/windows/desktop/aa383608(v = vs.85).aspx) –