hey all!
the normal way i set up c++ programs is:
#include <iostream>
int main()
{
return 0;
}
someone told me that I should be doing:
#include <iostream>
VOID main()
{
return 0;
}
the difference being void in the second one.
can someone tell me the true way? (or best)
the normal way i set up c++ programs is:
#include <iostream>
int main()
{
return 0;
}
someone told me that I should be doing:
#include <iostream>
VOID main()
{
return 0;
}
the difference being void in the second one.
can someone tell me the true way? (or best)