这是 .h 文件中的一项功能
LinkedListElement<char> * findLastNthElementRecursive(int n, int ¤t);
尝试两者
findLastNthElementRecursive(3,0);
和
int a = 0;
findLastNthElementRecursive(3,&a);
错误是没有匹配的功能
我知道findLastNthElementRecursive(3,a);
应该这样
但是如果我不想创建像 a 这样的新变量,该怎么做?