Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the final value of j in the below code?
Home
C Plus Plus
What is the final value of j in the below code?
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
...