Identify the compiler errors and state what is needed to eliminate the error(s).
```
include
Int HowOldAreYou(void);
int main
{
int age;
age = HowOldAreYou(void);
}
```
include
Int HowOldAreYou(void); << int not Int, don’t need (void), () will do.
int main
{
int age;
age = HowOldAreYou(void); << can’t have (void) in call
}
Computer Science & Information Technology
You might also like to view...
Device Manager is the area where all work is done in the Windows environment
Indicate whether the statement is true or false
Computer Science & Information Technology
When converting old HTML code to XHTML, pay specific attention to the ____ element, which often does not have closing tags.
A. p B. td C. table D. tr
Computer Science & Information Technology