"return " statement

does simply writing “return” means returning true or it means it is indicating termination ?

@dheerajmishra992 when the function is int type we return 0,when void we simply return,when bool we return true or false.it just means return is a keyword which is used to return some value from a function. It indicates that our program has been run successfully and we terminate our main function with this return statement