What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include 
int main() {
int x=55;
printf("%d, %d, %d ", x<=55, x=40, x>=10);
return 0;
}

A. 1, 40, 1
B. 1, 55, 1
C. 1, 55, 0
D. 36892