The answer will be C
As she is about to leave the position, in account of professionalism, she should NOT do any unnecessary harm to the current company, and she should notify the company for necessary description before leaving.
True . Because Press " ESC " To Exit Off Of Slide .
Answer:
nothing
Explanation:
Because the return type of the function is void. void means does not return any thing.
The syntax of the function:
type name( argument_1, argument_2,......)
{
statement;
}
in the declaration the type define the return type of the function.
it can be int, float, double, char, void etc.
For example:
int count( int index);
the return type of above function is int. So, it return integer.
similarly,
void count(int index);
it return type is void. So, it does not return any thing.