#include <iostream>
#include<string>
using namespace std;
int main() {
int a=30,b=1, c=5, i=10;
i=b<a<c;
cout<<i<<endl;
return 0;
}
Hello I have question about this code. when I run the code, I get the result which is 1, but I am not sure the relationship about i=b<a<c; and why I get the result
Thank you.