Hi all,
1: #include <iostream.h>
2:
3: int main()
4: {
5: cout << "Hello World!" << endl;
6: return 0;
7: }
In the above code does the line 6 (return 0), required by the operating system,that means tells the operating system a program finish?
If true, what the useful of close brace main function (line 7)?
Thanks