揮発性のメモ2

http://d.hatena.ne.jp/iww/

2010-09-29から1日間の記事一覧

__TIMESTAMP__

C

int main() { printf(__TIMESTAMP__ "\n"); printf(__DATE__ "\n"); printf(__TIME__ "\n"); return 0; } 表示サンプル $ ./a.out Wed Sep 19 17:09:54 2010 Sep 19 2010 17:14:56__TIMESTAMP__は ファイルのタイムスタンプ __DATE__、__TIME__は ファイルを…