Re: C'
Jon <[email protected]>
| Newsgroups | gmane.org.ballistichelmet.lambda |
|---|---|
| Message-ID | <[email protected]> |
dvanhorn wrote:
> int is_factor(int y, int x) {
> ((y == 0) || ((x % y) == 0));
> }
shouldn't it be:
return ((y==0) || ((x % y) == 0));