1
0
LearningCPP/main.cpp
2022-08-13 00:34:25 +01:00

16 lines
199 B
C++

#include <iostream>
void test(int*);
int num{ 0 };
int main()
{
test(&num);
return 0;
}
void test(int* execNum) {
std::cout << ++(*execNum) << ".";
test(execNum);
}