answersLogoWhite

0

What does the min function return?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

It is a macro, gives the smaller value out of two.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

C plus plus program using function min that take three parameters of type int and returns the minimum of the three?

int min (int a, int b, int c) {if (a


C plus plus prog a function min that returns the minimum of all Values in the given array int min int list int arraySize?

int min(int list[], int arraySize) { int min=arraySize?list[0]:0; for(int i=1; i<arraySize; ++i ) if(list[i]<min) m=list[i]; return(min); }


What is the difference between min and max function?

The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)The MIN function returns the lowest value from a set of values. The MAX function returns the highest value from a set of values.=MIN(A2:A20)=MAX(A2:A20)


What function would you use to find the least expensive item?

You would use the MIN function. It is rare that you would do so, but you could also use the SMALL function. Even rarer still, the SUBTOTAL function can also be used to do it. Going back to the MIN function, if your list of items were in the cells from A2 to A30, your MIN function would be: =MIN(A2:A30)


What function will show the smallest value in the selected range of cells?

The function that shows the smallest value in a selected range of cells in spreadsheet applications like Microsoft Excel or Google Sheets is the MIN function. For example, if you want to find the smallest value in the range A1 to A10, you would use the formula =MIN(A1:A10). This function will return the lowest number from the specified range.


How do you use return function?

return;orreturn ;PS: not function, statement!


A statistical function that determines the smallest value in a group of values?

MIN function


What number will the function return if the input is 12.2?

36.6


What is a return statement used for?

It means end the function. Functions automatically end when execution reaches the end of the function, but you can return from a function at any point within the function with a return statement. If the function returns a value to its caller, you must provide a reachable return statement along with the value you wish to return.


What is the flight time from Helsinki to Shanghai?

9 h 5 min and return 10 h 30 min


Write a program to return a function using class in C Plus Plus?

Classes cannot return values, only functions can return values. But you cannot return a function from a function, you can only return a function pointer -- a pointer variable holding the address of the function you wish to return. All possible return values must be of the same type, therefore all function signatures and return types must be exactly the same -- only the name of the functions can differ.


Write a java programme to find minimum number in the given array?

public int min(int[] arr) { int min = Integer.MAX_VALUE; for(int e : arr) if(e<min) min=e; return min; }