returns the Greatest Common Divisor of two integers

What will be an ideal response?

```
int gcd( int num1, int num2 )
{
int divisor;
int dividend;
int remainder;
divisor = abs( num1 );
dividend = abs( num2 );
for ( remainder = dividend % divisor;
remainder != 0;
remainder = dividend % divisor ) {
dividend = divisor;
divisor = remainder;
}
return divisor;
}
```

Computer Science & Information Technology

You might also like to view...

Once the merge fields are added to your form letter:

A) one letter for each person in the data source is created. B) you can no longer preview letters one at a time. C) you cannot merge all of the letters into a single Word document. D) the Merge to Printer dialog box is displayed.

Computer Science & Information Technology

Use the _____ tag to code embedded styles on a web page.

a. ``` #exampe{ font-size: small; font-weight: italic; } ``` b. ``` .example { font-size: small; font-style: italic; } ``` c. ``` .example { font-size: small; font-style: italic; } ``` d. ``` #example { font-size: small; font-style: italic; } ```

Computer Science & Information Technology