Q. What will be the output of the following code snippet?

Code:
#include <stdio.h>
void solve() {
    int x = 1, y = 2;
    printf(x > y ? "Greater" : x == y ? "Equal" : "Lesser");
}
int main() {
    solve();
	return 0;
}
  • (A) Greater
  • (B) Lesser
  • (C) Equal
  • (D) None of the above.
πŸ’¬ Discuss
βœ… Correct Answer: (B) Lesser

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
217
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Manisha Agrawal
Publisher
πŸ“ˆ
92%
Success Rate