Skip to content

Instantly share code, notes, and snippets.

@abcsharp
Created December 31, 2011 07:21
Show Gist options
  • Save abcsharp/1543226 to your computer and use it in GitHub Desktop.
Save abcsharp/1543226 to your computer and use it in GitHub Desktop.
アクセス違反とともに2011年の幕を閉じる
/*
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