12345678910



Question 1: What will be the output of the program?

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

1. 1, 40, 1
2. 1, 55, 1
3. 1, 55, 0
4. 1, 1, 1