[Solved] c++ random numbers when returning pointer from function


You are passing a pointer and a normal int to f, because

int *a=new int(4), b(16);

works like

int *a=new int(4);
int b(16);

Thus, in f, you have T == int* and U == int, then you add the int to the pointer and return the resulting pointer. As it does not point to memory you own and initialized, dereferencing it is UB and may yield garbage or crash or do whatever it likes.

As I already said in the comments, you should not try to learn C++ by trial and error, that really will not work, believe me. Learn it systematically from a good book instead. You will see that there is no need to use pointers for this in the first place.

2

solved c++ random numbers when returning pointer from function