时间时区转换小程序,GMT时间和加上时区后的时间和得到本地时区的小程序

项目中用到了时间转换的功能,计算GMT时间和加上时区后的时间,得到本地时区,我写了一个小程序希望对大家有所帮助!

 

#include <stdio.h>
#include <time.h>

int main(int argc,char *argv[])
{
    time_t time_utc;
    struct tm tm_local;

    // Get the UTC time
    time(&time_utc);

    // Get the local time
    // Use localtime_r for threads safe
    localtime_r(&time_utc, &tm_local);

    time_t time_local;
    struct tm tm_gmt;

    // Change tm to time_t 
    time_local = mktime(&tm_local);

    // Change it to GMT tm
    gmtime_r(&time_utc, &tm_gmt);

    int time_zone = tm_local.tm_hour - tm_gmt.tm_hour;
    if (time_zone < -12) {
        time_zone += 24;
    } else if (time_zone > 12) {
        time_zone -= 24;
    }

    char cur_time[256];
    strftime (cur_time,256, " %B %A %Y年%m[34m~\~H%d[34m~WH[34m~W[m~H~F%Sm~R   %c  %x %X", &tm_local);
    printf("LOCAL TIME  :%s\n", cur_time);

    strftime(cur_time,256, " %B %A %Y年%m[34m~\~H%d[34m~WH[34m~W[m~H~F%Sm~R   %c  %x %X", &tm_gmt);
    printf("GMT TIME    :%s\n", cur_time);

    printf("Your time zone is +%d. (- is west, + is east)\n", time_zone);

    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值