Forum: Java Jul 6th, 2007 |
| Replies: 1 Views: 796 Hi, I'm currently making a java-based web services application and want to embed the Google API. The trouble is that I can't fir their API files anywhere, can anybody help? |
Forum: Game Development May 8th, 2007 |
| Replies: 5 Views: 2,208 How would you do this in say... dev-cpp? |
Forum: Game Development May 7th, 2007 |
| Replies: 5 Views: 2,208 I have a program that I made with OpenGL, but it doesn't work on PCs that don't have OpenGL installed. Is there a way to embed the necessary OpenGL files into the .exe file through the compiler? |
Forum: C Apr 1st, 2007 |
| Replies: 5 Views: 3,834 Lol, me neither! And you're right, the first solution just let the thing compile, but the program didn't actually work the way it was supposed to. This fixed it for real.
Thanks! |
Forum: C Apr 1st, 2007 |
| Replies: 5 Views: 3,834 Yep, that fixed it. Thanks a bunch! |
Forum: C Apr 1st, 2007 |
| Replies: 5 Views: 3,834 I made a dynamic 2D array using 'calloc', but when I try to fill it, I get the following error:
name lookup of `j' changed for new ISO `for' scoping
Here's the part of the code where it... |
Forum: C Mar 24th, 2007 |
| Replies: 8 Views: 2,161 Haha, you're quite right! I took care of all of those probs. But I have a feeling my code is way off.
int arr[]={3,5,3,7,4},n=5;
void combos(int pos)
{
int i;
... |
Forum: C++ Mar 24th, 2007 |
| Replies: 9 Views: 1,621 It looks like we have a similar problem, Lavitz. I also have to make a recursive function, except with all possible combinations, not only one length.
An answer in either of our threads should... |
Forum: C Mar 24th, 2007 |
| Replies: 8 Views: 2,161 Anybody got any ideas? I'm extremely stuck here... |
Forum: C Mar 23rd, 2007 |
| Replies: 8 Views: 2,161 Sorry, double post. Don't ask me how it happened. :confused: |
Forum: C Mar 23rd, 2007 |
| Replies: 8 Views: 2,161 Gotcha.
I did a little work on it and so far this is what I got. For now I'm just trying to print each combo on a different line.
int arr[]={3,5,3,7,4},n=5;
void combos(int pos)
{
int... |
Forum: C Mar 23rd, 2007 |
| Replies: 8 Views: 2,161 Yeah, I think that recursion is the only way to do it, I'm just not very good at it.
Your concept is fine, except that I don't need a sum of the numbers, just a list.
Grr... I hate recursion. |
Forum: C Mar 23rd, 2007 |
| Replies: 8 Views: 2,161 Hey everyone!
I've been trying for a couple of days now to make a function and it's driving me crazy.
I need a function that takes a set of numbers in an array, for example:
int... |