answersLogoWhite

0

return lets you literally return a value from a function. This allows you to define functions like:

int add(int x, int y)

{

return(x + y);

}

int twoplustwo = add(2, 2);

User Avatar

Wiki User

15y ago

What else can I help you with?