What is the output of below code?
1 2 3 4 5 6 7 8 | #include "iostream" using namespace std; int main() { int i; i = 1 + ( 1, 4, 5, 6, 3); cout<<i; } |
a) 4
b) 7
c) compile time error
d) no output
The correct answer for this question is b)7 if we perform the arithmetic operation with in parenthesis the largest number from the set is taken for computation of output
Your answer is wrong dude.Output would be 4…Just try to compile and run the code…..
@Aryan thanks for pointing out the mistake it takes the last number in the parenthesis for evaluation
ans.-4,as the last digit is added from the numbers in parenthesis.
only one interview question??? :O i came here for multiples questionnaires but disappointed 🙁