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

What is the output of this program?
#!/bin/bash
a=10
b=$(( $a<0&&$a<100 ))
echo $b
exit 0
a) 10
b) 0
c) 1

Tweet Share WhatsApp