Answer
The program will give StackOverflow error.
Work Step by Step
The termination condition is N>0, but the modification statement is N= N/2. N will be halved every time but it will never fulfil the termination condition and eventually stack memory will become full and the program will give StackOverflow error.