move to repo.or.cz
[letusc.git] / ch2 / exercises1 / ex8.c
blob581add890d84eea1c8ae4c2cfb6f9df79e3e2db6
1 /*To find the absolute value of the given number */
3 //#include<stdio.h>
4 //#include<math.h>
5 //int main()
6 //{
7 // int i;
8 // printf("Enter a number: ");
9 // scanf("%d",&i);
10 // i = abs(i);
11 // printf("the absolute value is %d\n",i);
12 // printf("Pess any key to exit\n");
13 // getch();
14 // return 0;
15 //}