/*********************************************************** * FileName : NowTime.cc * * Create Date: 2003.02.11 Thu. * * Discription: 現在時刻を表示する、CGI * *********************************************************** */ #include #include /*------------------------- * main function *------------------------- */ int main( void ) { /* Making HTML Header Section*/ puts( "Content-type: text/html\n" "\n" "\n" "\n" " The Current Time JST\n" "\n" "\n" "

" ); /* Get Now Time */ time_t t = time(NULL); /* Print Time */ printf( "

現在時刻は
\n" "%s

", ctime(&t) ); /* Making HTML Footer Section */ puts( "

\n" "
\n" "\n" "" ); return 0; }