Linux Bash Arithmetic Expressions Question: Download Linux Bash Arithmetic Expressions PDF

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

Tweet Share WhatsApp