BUG6.c   [plain text]


main()
{
  unsigned long L;
  double D;
  D = L = -3;
  printf("L=%lu, D=%g\n", L, D);
  return 0;
}