What will be the output?
#include stdio.h
void solve()
{
bool ok = false;
printf(ok ? "Coffee" : "Tea");
}
int main() {
solve();
return 0;
}

Posted on by