Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v102a/test/cbug3.c
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

14 lines
173 B
C

#include <stdio.h>
/* diviuision routine for long operands do not act correctly
for negative operands */
main()
{
long a, b;
a= -12;
b= -3;
printf("%ld\n", a/b);
}