What will be the output of the following code snippet?
#include stdio.h
void solve() {
bool ok = false;
printf(ok ? "NO" : "YES");
}
int main() {
solve();
return 0;
}

Posted on by