Identify the compiler errors and state what is needed to eliminate the error(s).
```
#include
string AskForTime();
int main
{
string thisTime;
AskForTime();
```
```
#include
string AskForTime();
int main
{
string thisTime;
AskForTime(); << will compile OK but need to assign in call
thisTime = AskForTime();
}
```
Computer Science & Information Technology
You might also like to view...
Every field on a form has certain characteristics about the field that are stored in the ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
You need an Internet connection to use Photoshop Help.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology