What is output of code? #include #include void main() { int i; i = 0; if(i = 15, 10, 5) printf("C/C++ %d", i); else printf("Java %d", i); getch(); }19/25 What is output of code? #include #include void main() { int i; i = 0; if(i = 15, 10, 5) printf("C/C++ %d", i); else printf("Java %d", i); getch(); }C/C++ 15Java 15Java 5Complier errorGiải thíchChọn đáp án A