Sorry! Posting Assignment is allowed only for commercial accounts.
#include "stdio.h"int main() { int x, y = 5, z = 5; x = y == z; printf("%d", x); getchar(); return 0; }What is the output?