+ 1
We need to guess the output of the following code....
#include<stdio.h> int main(); { int i=1,j=0,k; k=i&j; k l =!!k; printf("%d",k); return 0; }
2 ответов
+ 2
Thank you Michal
For your answer, you were of great help.
+ 1
1&0 is 0=k
!!k is the same as k, that is 0
k=0|0 is 0
output should be 0