C
abs ( )
This function returns the absolute value of an integer. The absolute value of a number is always positive. Only integer values are supported in C.
Syntax: int abs( int num );
Example:#include
#include
int main()
{
int m = abs(200); // m is assigned to 200
int n = abs(-400); // n is assigned to -400
printf("Absolute value of m = %d\n", m);
printf("Absolute value of n = %d \n",n);
return 0;
}
Output:
Absolute value of m = 200
Absolute value of n = 400
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 501 / 158800262. Delta: 0.00234 с