InterviewSolution
Saved Bookmarks
| 1. |
Ii) Have a look at the following piece of code, state and explain the output. #include using namespace std;int fun(int n){ if(n % 2 == 0) return 1; return 0;}int main() { // your code goes here if(fun(2)) printf("Hi"); else printf("Bye"); return 0;} |
| Answer» TION:I don't UNDERSTAND what is this? | |