文章列表
练手用的,没写注释,很简单的小东西。
本来打算用C标准库的时间,没能很好理解其中一些细节,放弃了,自己写个玩下。
这应该算是一个demo,用来计算生日还是可以的,计算两个日期差几天。
好吧,上代码,没经过系统测试,喜欢复制去就可以了。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
// calendar struct
struct cal_m
{
int c_year; /* years sin ...