34

单选题 34 /61

time_t t;
哪个选项可以将t初始化为当前程序的运行时间?

参考答案

t = clock();
time( &t );
time( t );
t = localtime();
None of the above