Question: What does the following code print when it is invoked from the command line with funone. Be reasonably careful with the spacing. Note that blanks

What does the following code print when it is invoked from the command line with funone. Be reasonably careful with the spacing. Note that blanks is a built-in function which generates a string with the specified number of spaces. function funone() a = 0: indent(a, 'hello'): funtwo(a + 3): indent (a, 'ciao'): funthree(a + 3): indent(a, 'done'): end function funtwo(b) indent(b, 'intwo'): funthree(b+3): indent(b, 'outtwo'): end function funthree(a) indent(a, 'inthree') end function indent(b, msg) fprintf ('%d%s %s ', b, blanks(b), msg): end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
