Answer:
return
Explanation:
return is the statement which is used to return the value from the function definition to the function calling.
it is also used as exit from the function.
for example:
int count()
{
return 0;
printf("hello");
}
In the above the function return 0 without print the message "hello". we can used return any where inside the function for immediately ending the execution of function.