Search:

Type: Posts; User: SamyCode

Search: Search took 0.00 seconds; generated 30 minute(s) ago.

  1. Drawing a flag with glut library, what i'm doing wrong????

    Hi people. My name is Samuel. I'm trying to draw a simple flag, using the glut library on C. For your information, I have my experience working with C# and C++ but I have never tried C before. I let...
  2. Hmm...

    Well man I will go for it. I will give a try to an specific DBMS API. I will post any update. If there's any other way you could help me you are most welcome. And a thousand thanks man.
  3. I think I found in Google what I was looking for BUT....

    I think I found what I was looking for in Google but damn... it seems kinda complicated. Would someone try to explain me in english at least?

    Here's the link: How To Use A Database In Your...
  4. Hmmm...

    That would be a constructor and for some cases I preffered to create a new get and set for each of them. I really appreciate your fast answer but my question is not about how I have to build my...
  5. Help with passing data base information into my class methods!!!

    Hi guys. I'm new to C# though I have programming experiences with other languages. My question seems too noobie but the true is that I was raised programming at low level. This high level things are...
  6. Show us the code that you have so far and I give...

    Show us the code that you have so far and I give you a couple of hints.
  7. Replies
    10
    Views
    1,014

    Maybe because you are writing 7 each time that...

    Maybe because you are writing 7 each time that you run the program. This code have nothing wrong. It is doing what it should. If the problem is that you are getting 7 no matter what other character...
  8. I can see that 3 errors from here. Check the...

    I can see that 3 errors from here. Check the curly braces in the while. Also, one of your cout is lack of one more "<". I'm sure that like me, some others can see the errors. But is up to you to find...
  9. Is true...

    You are right man. I understand, I just don't know what I was thinking. Maybe it was too late at night. Thank you all.
  10. Oh well! I think I got it. There is not such...

    Oh well! I think I got it. There is not such thing as null operator in this case as you said. Is that I declare the ROW size to 2 and that's means that I want an array with two spaces which was 0 &...
  11. Replies
    4
    Views
    1,236

    It should be a Do... While loop because you want...

    It should be a Do... While loop because you want that the program runs at least, one time.
  12. hmmm...

    Well I don't understand. This two loops suppose to executes the same number of times or not???

    for (int c = 0; c <= 2, c++)

    and

    for (int c = 0; c < 3, c++)

    Sorry but I think is the same...
  13. SURE, because the NULL operator need a space too....

    SURE, because the NULL operator need a space too. Wao man, I just missed that. Thank you so much.
  14. Replies
    9
    Views
    2,867

    well...

    Deposit $20 in my PayPal account and I would do the homework for u lol.
  15. "Stack around the variable 'board' was corrupted" error in this code. But, why!?!

    This is a simple Tic Tac Toe game that i'm programming just to review some C++ concepts.


    # include <iostream>
    # include <string>
    # include <iomanip>

    using namespace std;
Results 1 to 15 of 15