What is the output of the following code?

```
#include
using namespace std;
int main()
{
int list[] = {10, 20, 30, 40};
cout << *(list + 1) << " " << *list + 1 << endl;

return 0;
}
```

A. 10 10
B. 20 11
C. 30 30
D. 20 20

B. 20 11

Computer Science & Information Technology

You might also like to view...

The ITU has three standards for video conferencing. Which of the following is NOT one of the three approved standards?

A) H.324 B) H.325 C) H.323 D) H.320

Computer Science & Information Technology

A DNS server can only be authoritative for a single domain.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology