Q239
What is the output of this program? #!/bin/sh demo_function() echo "Welcome to the Example" printf "World of Linux " unset -f demo_function demo_function exit 0
A.
Welcome to the Example
B.
World of Linux
C.
both Welcome to the Example and World of Linux
D.
nothing will print
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board