Search:

Type: Posts; User: EonsNearby

Search: Search took 0.01 seconds.

  1. They should be for floats.

    They should be for floats.
  2. I am not getting any error messages from this. ...

    I am not getting any error messages from this. As I said, it compiles, builds, and executes fine. It just does not call the AsmTest function.
  3. Oh, and the "int 3" that appears in the ASM code...

    Oh, and the "int 3" that appears in the ASM code is just so that the debugger would activate since there was a problem with the return value (but that is useless if I can't get the C++ code to call...
  4. Calling Assembly Language programs from C++ program

    Okay, for a lab assignment, I need to construct a C++ program that will call an Assembly Language procedure. The provided code is not what I am going to turn in. It is just a dummy program which is...
  5. Replies
    19
    Views
    3,220

    I don't have a choice. I have to use it.

    I don't have a choice. I have to use it.
  6. Replies
    19
    Views
    3,220

    I am going to have to have that in my program...

    I am going to have to have that in my program code since I can't discuss that with my teacher until it is too late.
  7. Replies
    19
    Views
    3,220

    Which NodePtr are you referring too? If you are...

    Which NodePtr are you referring too? If you are referring to what we discussed earlier, I won't be able to talk to my teacher about that until Monday, which is when the assignment is due.
  8. Replies
    19
    Views
    3,220

    Okay, I am having some trouble with (2). Here is...

    Okay, I am having some trouble with (2). Here is the code I have thus far (the reason I have the excessive cout and system("Pause") functions is because I am still debugging it):



    void...
  9. Replies
    19
    Views
    3,220

    Okay, I got that problem resolved. Thanks for...

    Okay, I got that problem resolved. Thanks for helping me.
  10. Replies
    19
    Views
    3,220

    I'm not say it is relevant, I am just saying that...

    I'm not say it is relevant, I am just saying that if I leave that out, then my professor will most likely subtract points from my assignment if I do leave that out, simply because the book said I had...
  11. Replies
    19
    Views
    3,220

    I can't remove these since the book says I have...

    I can't remove these since the book says I have to have them in my program code even if they don't make sense or are unnecessary (like the struct NodeType you pointed out). In regards to what...
  12. Replies
    19
    Views
    3,220

    For (1): NodePtr newNodePtr4 = new...

    For (1):


    NodePtr newNodePtr4 = new NodeType;

    newNodePtr4 = currPtr->link;

    cout << newNodePtr4->component << endl;

    currPtr = currPtr->link;
  13. Replies
    19
    Views
    3,220

    Help with a class assignment

    I need help on these 2 problems for an in class assignment. They are as follows:

    (1) Given the declaration:


    typedef int ComponentType;

    struct NodeType;
    typedef NodeType* NodePtr;
  14. Replies
    36
    Views
    3,799

    So for now, my program is running fine and my...

    So for now, my program is running fine and my questions have been answered. Thanks to everyone who helped out.
  15. Replies
    36
    Views
    3,799

    Well since I couldn't get help from my professor...

    Well since I couldn't get help from my professor or fellow students, I thought I should go to different forums and see if I could get help from any of them.

    But I have already specified in the...
  16. Replies
    36
    Views
    3,799

    I did, it is in the post where I had posted the...

    I did, it is in the post where I had posted the old code by mistake. I edited that post so now it has the new code in it.
  17. Replies
    36
    Views
    3,799

    Sorry, posted the old code. It has been changed

    Sorry, posted the old code. It has been changed
  18. Replies
    36
    Views
    3,799

    In regards to some of your evaluations, I have...

    In regards to some of your evaluations, I have updated my code and it seems to be working fine.


    // InClass Assignment 5
    // 3/11/2011
    //

    #include <iostream>

    #include <cstring>
  19. Replies
    36
    Views
    3,799

    But the thing is, we haven't covered vectors yet...

    But the thing is, we haven't covered vectors yet (it is the next chapter I think), so I don't think I am supposed to use vectors in any of these Programming Warm Up Exercises.
  20. Replies
    36
    Views
    3,799

    Okay thanks, that cleared up the problems I had...

    Okay thanks, that cleared up the problems I had with (1), but can you guys or someone else help me with (2)?
  21. Replies
    36
    Views
    3,799

    Need help with a class assignment

    I was given a class assignment over my spring break (which is this week), and I am having trouble doing the programming warm up exercises, and I was wondering if someone could help me out. I used...
Results 1 to 21 of 21