What is the value of i after the following lines? int i = 0; ++i++;
A、
1
B、
The line contains a syntax error.
C、
2
D、
0
E、
The value of i will not be set in these lines.
发布时间:2025-08-21 09:20:01
A、
1
The line contains a syntax error.
2
0
The value of i will not be set in these lines.