home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat102.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <math.h>
-
- void main()
- {
- long a;
- long b = -98765432L;
-
- a= labs(b);
- printf("¬°╛π╝╞: %ld ñº╡┤╣∩¡╚¼░: %ld\n",
- b, a);
- }