Given the function embiggen, what is the
value of x after the code below executes?
function n=embiggen(num)
if (nargin==0)
disp('Please supply a number')
else
n = num*2+5;
end
x = embiggen(embiggen(embiggen(1)));