Interview Question 3551
Created by admin on Sat, 17/11/2012 - 12:29
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).
Question:
main() {
clrscr();
}
clrscr();
Language:
Answer:
No output/error