赞
踩
U_BOOT_VERSION:1.2.3 (May 7 2024 - 21:58:35)
Date : May 7 2024
Time : 21:58:35
File : test.c
Line : 13
#include <stdio.h>
#define U_BOOT_VERSION "1.2.3"
const char version_string[] =
U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")";
int main()
{
printf("U_BOOT_VERSION:%s \n",version_string);
printf("Date : %s\n", __DATE__);
printf("Time : %s\n", __TIME__);
printf("File : %s\n", __FILE__);
printf("Line : %d\n", __LINE__);
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。