Ticket #10909: test2.c

File test2.c, 105 bytes (added by pulkomandy, 10 years ago)

Test program that shows strtol returning 0.

Line 
1#include <stdio.h>
2
3int main(void)
4{
5 long u = strtol("99999999999999999999999");
6 printf("%ld\n", u);
7}