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
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com
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