Div () [C language library function source code]

Source: Internet
Author: User

[C language library function source code]

[This program is compiled in Dev C ++ 4.9.9.2]

/*

Returns div_t for division of two integers,

It is defined in the stdlib. h header file.

Typedef struct

{

Int quot;

Int REM;

} Div_t;

Quot: quotient ).

Rem stores the remainder (remainder ).

The algorithm is very similar to the ldiv () function.

This function does not check if the denominator (divisor) is 0.

*/

 

Typedef struct

{

Int quot;

Int REM;

} Div_t;

 

Div_t my_div (INT num, int denom)

{

Div_t R;

 

R. quot = num/denom;

R. Rem = num % denom;

/*

On our general PC (Intel architecture series CPU)

It can run normally. But we do not know other machines.

How does one handle the division and remainder operations?

Write the error handling code.

The divisor is positive, the remainder is negative, the quotient plus 1, and the remainder minus the divisor.

The divisor is negative, the remainder is positive, the quotient minus 1, and the remainder plus the divisor.

*/

If (Num> = 0 & R. Rem <0)

{

++ R. quot;

R. REM-= denom;

}

Else if (Num <0 & R. Rem> 0)

{

-- R. quot;

R. Rem + = denom;

}

Return (R );

}

Int main ()

{

Div_t T;

T = my_div (0x7fffffff, 2 );

Printf ("quotient = % d/tremainder = % d/N", T. quot, T. rem );

System ("pause ");

Return 0;

}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.