c语言请教 如何获得两天后的日期
发布网友
发布时间:2023-11-09 23:58
我来回答
共3个回答
热心网友
时间:2024-12-05 14:32
vb的我知道:
print date+2
就是两天后的日期了!!
热心网友
时间:2024-12-05 14:33
#include "time.h"
#include "stdio.h"
#include "stdlib.h"
int main(void)
{
char tmpbuf[128];
time_t start;
struct tm *newtime;
start = time(NULL);
start =start+60*60*24*2;
newtime=gmtime(&start);
strftime( tmpbuf, 128, "%Y%m%d\n", newtime);
printf("%s",tmpbuf);
return 0;
}
热心网友
时间:2024-12-05 14:33
记得MMTIME类里有你需要的信息 头文件是mmsystem.h