Question: What does this script print out if the first command line argument is 5 (4+1) #!/bin/csh #Name of script is sum set limit = $argv[1]
What does this script print out if the first command line argument is 5 (4+1) #!/bin/csh #Name of script is sum set limit = $argv[1] set index = 1 set sum = 1 while ($index <= $limit) @ sum *= $index @ index++ end echo "Sum: $sum"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
