Forum: C Oct 3rd, 2009 |
| Replies: 11 Views: 670 Actually, your Python program works like a charm! |
Forum: C Oct 20th, 2007 |
| Replies: 6 Views: 1,472 Care to explain? Does not even look like a joke to me! |
Forum: C Oct 17th, 2007 |
| Replies: 15 Views: 1,715 Pardon my C, but your for statement lines should not be followed by ; or you are basically looping nothing.
I really have to admire the patience of the experts on this C forum! |
Forum: C Oct 15th, 2007 |
| Replies: 15 Views: 1,452 Would an ophthalmologist be good enough? |
Forum: C Oct 13th, 2007 |
| Replies: 4 Views: 1,051 Sounds like an interesting library. What is it called? |
Forum: C Oct 13th, 2007 |
| Replies: 15 Views: 1,452 Doesn't look like a matter of taste!! |
Forum: C Oct 13th, 2007 |
| Replies: 9 Views: 1,054 Sorry, Google must have that wrong then: |
Forum: C Oct 13th, 2007 |
| Replies: 9 Views: 1,054 Here is another C compiler, just posted:
http://www.daniweb.com/forums/post448385-8.html |
Forum: C Oct 13th, 2007 |
| Replies: 15 Views: 1,452 Doesn't look like a matter of taste then? |
Forum: C Oct 13th, 2007 |
| Replies: 10 Views: 1,358 Does that person waving a chainsaw at you look like a man? |
Forum: C Oct 13th, 2007 |
| Replies: 9 Views: 1,054 I think it also works with Windows or Linux OS. |
Forum: C Oct 13th, 2007 |
| Replies: 15 Views: 1,452 Looks like a matter of taste. |
Forum: C Apr 8th, 2007 |
| Replies: 2 Views: 2,321 I assume you are talking about whole numbers. If you remove all odd and even numbers from a set of numbers you have nothing left! However you can safely remove the number 1 and all even numbers. ... |
Forum: C Apr 7th, 2007 |
| Replies: 21 Views: 2,804 You cannot use C to solve this problem. The highest integer value it can use is: unsigned long (32 bits) goes from 0 to 4,294,967,295 max.
There are other languages that can handle very large... |
Forum: C Apr 7th, 2007 |
| Replies: 10 Views: 5,884 Now we have all seen that our moderators are less than perfect:
// typical example for seeded random integers in a given range
#include <stdlib.h>
#include <stdio.h>
#include <time.h> //... |