Program to find the absolute value of any number


#include <stdlib.h>
#include <stdio.h>

main()
  {

    printf("The absolute value is %d",abs(-1));

    getch();
  }

Comments

Popular posts from this blog

Customize User's Profile in ASP.NET Identity System

Lambda two tables and three tables inner join code samples