Hi everyone I am new here. I have a question about the code below. As you can see x=Period(). The if statement checks if x>240 and if true then it returns -1. What I want to know is what does returning -1 in the start() function do? what is it telling the system if its returning -1? because I know normally its returns(0) and not return(-1).
int start(){
x=Period();
if (x>240) return(-1);
//MORE CODES BELOW
}
and also if their is MORE CODES BELOW the return(-1) will those codes execute?