Bash Scripting - Variables
What will be the output of this script?
declare -i x=10 declare -i y=5 x=$((x - y)) echo $x
declare -i x=10 declare -i y=5 x=$((x - y)) echo $x
x=$((x - y)) subtracts 5 from 10, resulting in 5.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions