I have 2 files a.bat and b.bat
The b.bat file looks like this:
exit /b 0
The a.bat file looks like this
call b.bat
Question: what effect does execution of exit /b 0 in b.bat have to a.bat file which does call b.bat assuming we run a.bat?
