用C语言编程序:写一个函数seconds,实现:定义一个结构体变量(包括时、分、秒)。计算该时刻在

2025-01-19 03:16:42
推荐回答(1个)
回答1:

unsigned long seconds(unsigned char hr,min,sec)
{
unsigned long dat;
dat=hr*60*60+min*60+sec;
retrun(dat);
}