#include<stdio.h> #include<conio.h> int main() { int i = 4, j = -1, k = 0, w, x, y, z; w = i||j||k; x = i&&j&&k; y = i||j&&k; z = i&&j||k; print

#include<stdio.h>
#include<conio.h>
int main()
{
int i = 4, j = -1, k = 0, w, x, y, z;
w = i||j||k;
x = i&&j&&k;
y = i||j&&k;
z = i&&j||k;
printf("%d %d %d %d", w, x, y, z);
getch();
}</blockquote>
What will be the output of the program?
A. 1 1 1 1
B. 1 0 0 1
C. 1 0 1 1
D. Other