C/stdlib.h/abs
Версия от 14:20, 25 мая 2010; (обсуждение)
abs: returns the absolute value of num
//Header file: #include <stdlib.h>
//Declaration: int abs(int num);
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("%d",abs(-1));
}
/*
1*/