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 recommended minimum font size for text in the body of a slide is ________ points

A) 12 B) 16 C) 18 D) 20

Computer Science & Information Technology

The central principle of the design method is to provide the client with more than one concept

Indicate whether the statement is true or false

Computer Science & Information Technology