我有这样的事情:
char *current_day, *current_time;
system("date +%F");
system("date +%T");
它在标准输出中显示当前日期和时间,但是我想获取此输出或将其分配给current_day和current_time变量,以便稍后可以对这些值进行一些处理。
current_day ==> current day
current_time ==> current time
我现在想到的唯一解决方案是将输出定向到某个文件,然后读取该文件,然后将日期和时间的值分配给current_day和current_time。但是我认为这不是一个好方法。还有其他简短而优雅的方法吗?
Helenr
相关分类