#include <stdint.h>
#include <cstring>
int main() {
const uint8_t tag[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '1', '2', '3', '4', '5'};
uint8_t* tagPtr = const_cast<uint8_t*>(tag);
memcpy(tagPtr, "0123456789012345", sizeof(tag));
// 现在 tag 的值已经被修改了
return 0;
}
gpt3.5回答
【 在 lexluthor 的大作中提到: 】
: 对 对 对, 为了工作更有意义(不可替代), 必须随时在代码用一些高深的技术.
--
FROM 114.249.20.*