Forum: C Jan 24th, 2005 |
| Replies: 6 Views: 32,035 Here is your culpret:
beg=a[0];
end=a[9];
beg should be the bottom of the range to search, in this case 0.
end should be the top of the range to search, in this case n (not 9).
You are... |
Forum: C Dec 4th, 2004 |
| Replies: 3 Views: 2,451 you mean like:
1.2345
1.2344
is the same to 3 figures?
So, couldn't you say
int intX1 = (int)(x1 * figures); |
Forum: C Jul 15th, 2004 |
| Replies: 2 Views: 6,609 Something like this?
void main()
{
printf("leapyear");
} |