return 0; won't work because you declared the function as void, meaning that it doesn't return anything, not even a zero.
This should work...
return;
return 0; won't work because you declared the function as void, meaning that it doesn't return anything, not even a zero.
This should work...
return;