Saved Bookmarks
| 1. |
What will be the output? (&& is logical AND operation) #include int main() { int i=0,j=1; printf("\n%d",i++&&++j); printf("\n%d%d",i,j); return 0; } |
Answer» The output of the given code:Output: 0 11 Explanation:
Learn more:
|
|