KAIHATSUGIKEN GROUP

C++ PROGRAMMING LANGUAGE




*********************************************************************************
‚P‚P@ƒ‰ƒ“ƒ^ƒCƒ€ƒ‰ƒCƒuƒ‰ƒŠ‚ΜŠˆ—p
*********
#include <iostream.h>
#include <time.h>		//ƒ‰ƒ“ƒ^ƒCƒ€ƒ‰ƒCƒuƒ‰ƒŠŠΦ”‚Μ‚½‚ί‚Μƒwƒbƒ_ƒtƒ@ƒCƒ‹

void main(void)
{
time_t system_time;

system_time = time(NULL);

cout << "The current system time is " << ctime(&system_time) << endl;
}
*********
The current system time is Mon Jan 01 15:13:51 1996
*********