12 lines
153 B
C
12 lines
153 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
long x, y;
|
||
|
|
||
|
x = -50000L;
|
||
|
y = labs( x );
|
||
|
printf( "labs(%ld) = %ld\n", x, y );
|
||
|
}
|