define

#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  阅读(377)  评论(0编辑  收藏  举报