Q. Find the output of the following program.
Code:main(){
int i = (1, 2, 3);
cout << i << endl;
}
β
Correct Answer: (C)
3
main(){
int i = (1, 2, 3);
cout << i << endl;
}
You must be Logged in to update hint/solution