Vidyalelo
Computer Science · Q224

Linux

Engineering and GATE · Computer Science · question 224

Q224

What is the output of this program? #!/bin/bash a=1; b=2; c=3 d= (( ++a**b*c++ + a )) echo d exit 0

A.
14
Answer
B.
12
C.
program will generate an error message
D.
none of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board