Search:

Type: Posts; User: MasterAchilles

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    12,808

    Yeah I know what you mean. I think I am just...

    Yeah I know what you mean. I think I am just going to hand it in as well. I spent way too much time on this thing already. Thanks for the help though. I have never actually googled my username but I...
  2. Replies
    10
    Views
    12,808

    Do you know whether or not we are supposed to be...

    Do you know whether or not we are supposed to be able to see the values of the registers change when we press r because all I see is all zero.
  3. Replies
    10
    Views
    12,808

    It just displays cont but I am not sure what that...

    It just displays cont but I am not sure what that is supposed to mean. I thought it was supposed to HALT the program since it says something about an illegal instruction.

    My problem is that I...
  4. Replies
    10
    Views
    12,808

    I am having a problem with my cpu simulation....

    I am having a problem with my cpu simulation. The first code is what I was required to write and it works with the second and third codes.

    The second code is what really decides what it is my...
  5. Replies
    5
    Views
    2,123

    Well not an array because my professor gave us a...

    Well not an array because my professor gave us a code he wrote already and the variables we are to store these bits in are just unsigned. This is the first time I have ever seen the unsigned...
  6. Replies
    5
    Views
    2,123

    Hexadecimal value

    I have a variable that is initialized to a hexadecimal value. What I am trying to do is break the value into several parts. So pretty much my variable is set to something like 0x22510064 which is...
  7. Replies
    1
    Views
    1,226

    Linked List Deletion

    My cancel function stops working if I delete the node. Any hints you can give me as to why?



    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    typedef char FName[30];
    typedef...
  8. Replies
    3
    Views
    966

    For some reason though it returns my NONE value...

    For some reason though it returns my NONE value for Computer even though computer is in my first file.

    1st file: If Computer then, 2nd file can have only Computer to be correct.
    1st file has...
  9. Replies
    3
    Views
    966

    Searching a BST help

    So far my program is working except for one condition. If the 1st file you read in has for example the word "computer" then if the second file has either "computer" or "Computer" then the word should...
  10. Replies
    14
    Views
    2,680

    I see. That was a remnant from before I switched...

    I see. That was a remnant from before I switched from while(!feof(ifp)). I had no idea it could have such an effect. Thanks a lot for the help.
  11. Replies
    14
    Views
    2,680

    Thanks. I'll fix that right now. Thanks a lot for...

    Thanks. I'll fix that right now. Thanks a lot for readings its helping me understand these concepts better. I updated my code and the scanf, but using fgets its not working. Do I have to do it a...
  12. Replies
    14
    Views
    2,680

    I have no warnings or errors now. Now I think I...

    I have no warnings or errors now. Now I think I should erase some of these printf functions. That last run took over 3 minutes to finish. It's still replacing the first word with the newest word...
  13. Replies
    14
    Views
    2,680

    For some reason that cased my function to crash....

    For some reason that cased my function to crash. I don't know why because it makes more sense then just setting them equal to each other. I read the FAQ about feof and loops and see that I shouldn't...
  14. Replies
    14
    Views
    2,680

    Thanks. Sorry about that. I should have searched...

    Thanks. Sorry about that. I should have searched before I posted.
  15. Replies
    14
    Views
    2,680

    Using fgets on a file

    I am trying to write a program that will spell check a file by reading in two files. he problem I am having is that I have to enter the file containing a list of dictionary words into a binary search...
Results 1 to 15 of 16