Hi doing what I say in the title, just come to write my first dsPIC program and notice instead of:
For the C18 compiler:
void main()
{
Do something;
}
For the C30 compiler:
int main(void)
{
Do something;
}
So why when moving onto dsPICs do they use a return value for main?, has it got a purpose?