Item Value
Header filestdlib.h
Declarationlong int labs(long int num);
Functionreturns the absolute value of num.
Convert the number entered at the keyboard into its absolute value.
#include
#include
int main(void){
printf("%d", labs(-11111));
}
11111