• Multi Byte Arithmatic
    Dear All, I am in need of multibyte arithmatic C source code to achieve 128 bit and more Multiplication and Division operation. In our application we need to carry out division operation of 128...
  • Multi Byte Arithmatic
    Dear All, I am in need of multibyte arithmatic C source code to achieve 128 bit and more Multiplication and Division operation. In our application we need to carry out division operation of 128...
  • Re: Long Integer Multiple Error
    Think you. I modified my source : printf("%lu * %bu = ", N, M); printf("%lu\n", Freq); Freq=25690112L; printf("%lu * %bu = ", Freq, 4); Freq*=4; printf("%lu\n", Freq); It work correctly...
  • Re: Long Integer Multiple Error
    Think you. I modified my source : printf("%lu * %bu = ", N, M); printf("%lu\n", Freq); Freq=25690112L; printf("%lu * %bu = ", Freq, 4); Freq*=4; printf("%lu\n", Freq); It work correctly...
  • how to deal with a very larger integer variable than unsigned long int ?
    hi I want to use a very larger integer variable to store a value , an unsigned long integer ( 4 bytes unsigned long integer)maybe overflow! how can i deal with this situation?