- 3
What's the importance of void main of in c++
2 odpowiedzi
0
Read lesson 1 of the c++ course again.
0
You can use int main instead of void - void simply means that main function does not return anything, in int main case you need to return something - or return 0;