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

分析

void(*)()是一个函数指针
*(void(*)())0是说取0这个地址的函数
(*(void(*)())0)()表明函数调用

原文地址:https://www.cnblogs.com/code-fun/p/15407845.html