Login
Remember
Register
Ask a Question
What is the final value of j in the below code?
+1
vote
asked
Jun 13, 2019
in
C Plus Plus
by
Derya
What is the final value of j in the below code?
#include <stdio.h>
int main()
{
int i = 10, j = 0;
if (i || (j = i + 10))
//do something
;
}
a.Depends on language standard
b.0
c.Compile time error
d.2
#c
language
Please
log in
or
register
to answer this question.
0
Answers
...