猜下面的代码输出什么?
程序代码:
#include <iostream> #include <cstdlib> #include <conio.h> struct CustomData { int x; char s[20]; }; int main(void) { CustomData test = { 66 * 256 + 65, "Hello!" }; CustomData* p = (CustomData*)&test.x; printf_s("%s\n", p); _getch(); return EXIT_SUCCESS; }
授人以渔,不授人以鱼。