Identify the compiler errors in Problems and state what is wrong with the code.

```
#include
using namespace std;
int main()
{
float numbers[100];
int j;
cout << numbers;

}
```

There are no compiler errors in this code. There will be a warning saying you need to return 0

```
#include
using namespace std;
int main()
{
float numbers[100];
int j;
cout << numbers; << this will write the hex address. It is not
a compiler error.
}
```

Computer Science & Information Technology

You might also like to view...

Which of the following operators can be overloaded as a non-member function?

a. () b. [] c. += d. ==

Computer Science & Information Technology

What is the emerging key to business-to-business e-commerce?

(a) Up-to-date site content. (b) Effective customer relationship management. (c) A working FTP site. (d) An attractive incentive to users to go register with your site.

Computer Science & Information Technology