What is the O/p??
#include stdio.h
void solve()
{
int x = 22, y = 222;
printf(x y ? "Greater" : x == y ? "Equal" : "Lesser");
}
int main() {
solve();
return 0;
}


Posted on by