029. Technical interview question: Give the output the following code Prashant Chaudhari 7 years ago int main() { int i, j; i=j=2,3; while(--i&&j++) printf("%d %d", i, j); return 0; }