What is the final value of j in the below code?
int main() { int i = 0, j = 0; if (i && (j = i + 10)) //do something ; }
Answer: