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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!