Choose Category
//Abs - Returns Absolute value of an Integer #include<stdio.h> #include<conio.h> int main () { int x; x=abs(-14); //printf("Absolute value of an Integer"); printf ("x=%d\n",x); return 0; }