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

```
#include
using namespace std;
char [] FillArray();
int main()
{
int values[75];
values = FillArray();
return 0;
}

```


```
#include
using namespace std;
char [] FillArray(); << can’t return an array from a function
int main()
{
int values[75];
values = FillArray(); << won’t compile, illegal lvalue error
return 0;
}
```

Computer Science & Information Technology

You might also like to view...

Where are the policy definitions located in a consolidated policy document?

A) At the beginning of the document B) At the end of the document C) Just after the policy heading D) In a separate document

Computer Science & Information Technology

Which type of image uses lossy compression to reduce file size?

a.BMP b.JPG c.TIF d.ZIP

Computer Science & Information Technology

The command _________ on the Columns menu formats the section in a single column, which is the normal setting for ordinary documents.? A. Ink B. One C. A1 D. Normal

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

How do you save a blend for reuse?

What will be an ideal response?

Computer Science & Information Technology