C语言函数指针如何实现跳转

xiaoxiao2021-02-28  42



void (*theUboot)(void);

theUboot = (void (*)(void))(0x30700000);

theUboot();

2

(*(void (*)(void))(0x30700000))();

转载请注明原文地址: https://www.6miu.com/read-2628034.html

最新回复(0)