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

Migrating database from ASP.NET Identity to ASP.NET Core Identity