By placing void
in front of any function definition, you make it so that the function does not need to return a value. For example:
void test(void)
{
...
}
Would not return
anything.
3
solved how return keyword work in main function or any user defined function? [closed]