main()
{
clrscr();
}
clrscr();
{
clrscr();
}
clrscr();
Answer:
No output/error
No output/error
Explanation:
The first clrscr() occurs inside a function. So it becomes a function call. In the second clrscr(); is a function declaration (because it is not inside any function).
The first clrscr() occurs inside a function. So it becomes a function call. In the second clrscr(); is a function declaration (because it is not inside any function).
No comments:
Post a Comment