Answers

Question and Answer:

  Home  Linux Bash Arithmetic Expressions

⟩ What is the output of this program? #!/bin/bash a=10; b=20 c=$((++a)) let a=c+a echo $a exit 0 a) 21 b) 22 c) program will generate an error message d) none of the above

b) 22

 160 views

More Questions for you: