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

Submitted by: Murtaza
b) 22
Submitted by: Murtaza

Read Online Bash Arithmetic Expressions Job Interview Questions And Answers