9 lines
82 B
C
9 lines
82 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
long int x;
|
||
|
|
||
|
x = atol( "-289" );
|
||
|
}
|