1.

What is the output of the following code?for (int i = 2; i < = 10 ; i + = 2)cout<<i;

Answer»

Output:

2 4 6 8 10



Discussion

No Comment Found