Computer Science, asked by gurleensandhu2110, 2 months ago

Assume the given declarations and fill in the value of the expression . int i = 0, j = 1, k = 2;

Expression: i || !k

Answers

Answered by aishunallapati
0

Answer:

0

Explanation:

k= 2

!k=0

i=0

i||!k= 0||0= 0 i.e False

Similar questions