- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
6 Posted Topics
I'm working on a small concept demo for a friend and I'm stuck on the UI. I'm trying to build something akin to an FPS interface (using mouse-look and the iconic WASD). I'm working in a Windows environment (Win7 to be precise), so I figured I'd use the standard Windows … | |
Re: I found the error. you called check.getReal() and check.getImag() without the (). That's why your compiler is grumpy. | |
Re: I believe I see your problem. Your first while loop reads "while(flag1){..." However, you've initialized flag1 to 0 so the while loop will never run. Because of that, the "l*=10;" that you relied on to make "l" different from "m" (because you set both to 10) won't happen. Because both … | |
Re: having all relevant code would be nice. i.e. variable declarations of post an in, and any libraries you may be using. As for the function, is it hand coded or out of a library? If it's hand coded, we'll need that as well. If it's out of a library, then … | |
Re: what is this program supposed to do? Just in terms of main, you only call queen. When i look into queen, all of your place statements have been commented out. With t = 5, absolutely nothing in queen will run. What I'm trying to say is, I can't figure out … | |
I've got a slight problem with a function I'm writing. I'm trying to pass a 2d array to a function whose sole purpose is to display the contents of said array. Now, what I'm about to give you all compiles, but my compiler (bloodshed's dev-c++ v4.9.9.2) is giving me "warnings". … |
The End.