Search:

Type: Posts; User: bargomer

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    2,614

    I don't want to be a professional programmer, I...

    I don't want to be a professional programmer, I just wanna be able to program on for fun. I'll take your guy's advice and not discriminate against either one. I'm gonna first start off with directx...
  2. Replies
    10
    Views
    2,614

    After reading RokD's article, I'd rather learn...

    After reading RokD's article, I'd rather learn OpenGL than directx. And thanks for linking that book recommendation post. Unfortunately there wasn't much info on graphics. BTW, I'd like more info on...
  3. Replies
    10
    Views
    2,614

    Which OpenGL book shoul I pick?

    I should mention that I only have c++ experience and zero graphing experience. As of right now I plan on getting both books, but only wanna get one at a time. Or are these bad choices, if so, would...
  4. Replies
    13
    Views
    2,213

    Java and C++ for game programming

    I'm taking some java classes right now, and was wondering if I would be able to integrate applications from both languages?
  5. Replies
    5
    Views
    1,949

    I found the reason for it not compiling. ...

    I found the reason for it not compiling. Apparently you cannot copy and paste code into the source file after you already built the solution.
  6. Replies
    5
    Views
    1,949

    New to Visual Studio 2008

    I've been using jGrasp for the past year to compile my programs and I'm switching over to VS. Why can't I get any of my old .cpp files to compile? They compile on jgrasp, and I keep getting errors...
  7. Replies
    4
    Views
    1,546

    I see what i was doing wrong. I wasnt performing...

    I see what i was doing wrong. I wasnt performing crap.setValue and the others. Was thinking those would automatically execute. Working on fixing the loop now. Thanks for the advice.
  8. Replies
    4
    Views
    1,546

    How do classes execute code?

    #include <iostream>
    using namespace std;
    class numericArray
    {
    private:


    double *array;
    double average;
    int pick, high, low;
  9. Replies
    16
    Views
    3,735

    whoops, sorry didnt think about that. Didnt...

    whoops, sorry didnt think about that. Didnt want ppl have to scroll down the page of so much code.
  10. Replies
    16
    Views
    3,735

    AHHHHH!!! Didn't even notice that I hadn't...

    AHHHHH!!! Didn't even notice that I hadn't changed some of them again. Figured it was something else causing the problems. Thanks!



    *edit*

    Thanks everybody finally got it to run the I...
  11. Replies
    16
    Views
    3,735

    [CODE[/CODE] That's how the new code looks...

    [CODE[/CODE]

    That's how the new code looks like. Was taking anon's advice on changing the structure of my program. Everything looks like its matching up to me :'(
  12. Replies
    16
    Views
    3,735

    Weird. It looks like my prototypes and headers...

    Weird. It looks like my prototypes and headers are the same. I have another program that uses the same structure names, but they aren't related in anyway.


    *edit*

    Not sure how its actually...
  13. Replies
    16
    Views
    3,735

    I'm now getting an Unresolved external error. ...

    I'm now getting an Unresolved external error.

    Error: Unresolved external 'getData(Store, int)' referenced from C:\USERS\BARAZIN\DOCUMENTS\PROJECT9.OBJ
    Error: Unresolved external 'menu(Store,...
  14. Replies
    16
    Views
    3,735

    Store *d; d = getData(size, loopie); d will...

    Store *d;
    d = getData(size, loopie);

    d will have the address of the returned value(the array of structures) ?




    int main()
    {
  15. Replies
    16
    Views
    3,735

    Program stops executing

    // new code down below



    Hope the above isnt too much code to put here, but after I try to exit the loop early and return the structure in the getData function, the program just stalls. Can...
  16. Replies
    7
    Views
    1,052

    The way I set up the nested for loops was to do...

    The way I set up the nested for loops was to do the following. Can someone point me in the right direction?

    when the for loops for the first time execute. The value of the first array is gonna...
  17. Replies
    7
    Views
    1,052

    Need help with array

    #include <iostream>
    #include <iomanip>
    #include <fstream>

    using namespace std;

    void studentData(); // declarations
    char studentName[24][40],letterGrade[24];
    int classData[24][4],...
  18. Replies
    1
    Views
    933

    How to reset file being read?

    if(inFile >> testGrade[0])
    found = true;

    for(int a = 0; a < 4; a++)
    {
    inFile >> testGrade[a];
    cout << testGrade[a] << " ";
    }
    inFile.getline(studentName[0],40);
    cout <<...
Results 1 to 18 of 18