1.1 Find errors, if any, in the following program:
/* A simple program
int main()
{
/* Does nothing */
}
Answers
Answered by
6
Errors
- int will not be there
- in place of int, it will be void
- and there will be no brackets after main
Answered by
0
Answer:
The error in the above question is return 0;
Similar questions