@ -1,15 +1,11 @@
#include <iostream>
void test(int*);
int test();
int num{ 0 };
int main()
{
test(&num);
std::cout << test();
return 0;
}
void test(int* execNum) {
int test() {
std::cout << ++(*execNum) << ".";
test(execNum);
The note is not visible to the blocked user.