What should we use void main() or int main() ?
There is question that what should we use void main() or int main() ? void main() { /* … */ } Or, int main() { /* … */ } In both language C and C++, there is standard for it. You may refer the ISO C++ standard 3.6.1[2] or the ISO C standard 5.1.2.2.1 It is suggested to… Read More »
