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