Identify the compiler errors and state what is needed to eliminate the error(s).

```
#include
using namespace std;
void Func1();
int Func2(float);
int main
{
Func2();
n = FUNC1();
}

```

```
#include
using namespace std;
void Func1();
int Func2(float);
int main
{
Func2(); << prototype shows a float input
n = FUNC1(); << Func1() not FUNC1()
}
```

Computer Science & Information Technology

You might also like to view...

The class _______ is the portion of a class that is visible to the application programmer.

a. form b. design c. control d. interface

Computer Science & Information Technology

Commodity IT assets include such things are network management.

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

Computer Science & Information Technology