M
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;
}
void solve() {
int x = 1, y = 2;
printf(x > y ? "Greater" : x == y ? "Equal" : "Lesser");
}
int main() {
solve();
return 0;
}
- Correct Answer - Option(B)
- Views: 141
- Filed under category C Programming
Discusssion
Login to discuss.