摘要: #include "stdio.h"int main(){ void* k = &&aa; goto *k; aa: printf("ok\n"); return 1;} 阅读全文
posted @ 2021-11-17 15:57 zJanly 阅读(164) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#define F(a, b, c) f(c)void f(int a){ std::cout << a << std::endl;}int main() { F(9,,4); return 0;} 阅读全文
posted @ 2021-11-17 11:26 zJanly 阅读(417) 评论(0) 推荐(0) 编辑