Created
December 31, 2011 07:21
-
-
Save abcsharp/1543226 to your computer and use it in GitHub Desktop.
アクセス違反とともに2011年の幕を閉じる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
2011.exe ソース | |
1秒毎にUNIXタイムスタンプを表示し、2011年12月31日23時59分59秒(JST)になるとアクセス違反起こして落ちます。 | |
※パソコンの時間がずれていると落ちるタイミングもずれるので注意。コンパイル・実行は自己責任の下でお願いします。 | |
作者:abc(@abcsharp) | |
*/ | |
#include <ctime> | |
#include <iostream> | |
#include <Windows.h> | |
int main(void) | |
{ | |
int* ptr=0; | |
for(;;){ | |
std::cout<<time(0)<<std::endl; | |
if(time(0)==1325343599) *ptr=1; | |
Sleep(1000); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment