What will be the output of the following c program?
#include "stdio.h"

int main()

{

int x, y = 10, z = 10;

x = y == z;

printf("%d", x);


getchar();

return 0;

}

Posted on by