Search:

Type: Posts; User: Wizard_D

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    988

    #include class cell { int...

    #include<iostream.h>


    class cell {
    int disc;
    cell *next;
    cell (int d)
    {
    disc = d;
    next = this;
  2. Replies
    3
    Views
    988

    What does ... mean

    int decr(int a)
    {
    a--;
    if(a<0)
    a=2;
    return a;
    }

    int incr(int a)
    {
  3. Replies
    6
    Views
    1,300

    If you didn't know how to convert thats all you...

    If you didn't know how to convert thats all you had to say. Heck you didnt need to put your two cents in at all.

    Also give me some examples of some highschools that give this question for a...
  4. Replies
    6
    Views
    1,300

    I said I have NOT been in a C++ class before and...

    I said I have NOT been in a C++ class before and have not worked with C++ before.
  5. Replies
    2
    Views
    2,241

    Can anyone translate this into C? from C++?

    #include<iostream.h>


    class cell {
    int disc;
    cell *next;
    cell (int d)
    {
    disc = d;
    next = this;
  6. Replies
    6
    Views
    1,300

    Can anyone change this into C format?

    #include<iostream.h>


    class cell {
    int disc;
    cell *next;
    cell (int d)
    {
    disc = d;
    next = this;
  7. Replies
    7
    Views
    1,974

    The C++ version of the Code ended up working....

    The C++ version of the Code ended up working.
    The prob that i came across with your version was that all your push and pop and such were not correct, that and your rear was not declared.
  8. Replies
    7
    Views
    1,974

    Quzah you the star and we all just following your...

    Quzah you the star and we all just following your lead. Will you do it though?
    Thanks
  9. Replies
    7
    Views
    1,974

    Can anyone translate this into C? ...

    Can anyone translate this into C?



    #include<iostream.h>


    class cell {
    int disc;
    cell *next;
  10. Replies
    2
    Views
    911

    Thanks a bunch

    Thanks a bunch
  11. Replies
    2
    Views
    911

    what is the name for...

    What is the name of the file that will print to screen when using fprintf?

    If you were wondering why i don't just use printf is because i am sending a function some values and to test it i just...
  12. Replies
    3
    Views
    2,423

    LOL. I have doubts that anyone will be able to...

    LOL. I have doubts that anyone will be able to answer that question. That is pretty tough without the use of recursion.
  13. You should not call main within itself. If you...

    You should not call main within itself. If you are going to use recursion(it should be done within a sub function);

    one thing to remember is that if you are going to use recursion is that if you...
  14. Replies
    3
    Views
    1,450

    How can you...

    Make a copy of what is in a stack.
    No not copy the pointer.
    But i mean actually copy everything in a stack to another stack minus the same pointer locations. All while not altering the original...
  15. Thread: Question

    by Wizard_D
    Replies
    1
    Views
    946

    Question

    Does anyone truly understand how the ALU works? yeah i know it is able to add/subtract/div/mult all by addition but how? What is the way in which you can divide by adding?

    Thanks.


    I am Puzzled
  16. Replies
    6
    Views
    3,413

    You wouldnt happen to have the header files and...

    You wouldnt happen to have the header files and the main you used would U??

    I am not seeing were some of your classes are coming from ie Tokens etc.

    Thanks
  17. Replies
    1
    Views
    874

    Is there a difference between???

    Is there a difference between PostFix notation and RPN??
  18. Replies
    6
    Views
    3,413

    How about the code that would take the infix...

    How about the code that would take the infix expression and give you the post fix expression in return?
  19. Replies
    25
    Views
    3,472

    ms visual c++ 6 is the best and you can get a...

    ms visual c++ 6 is the best and you can get a fully functional tutorial version that never expires if you buy a C++ tutorial package that comes with the book C++ in 24 hrs. I lovems visual c++ 6 its...
  20. Replies
    6
    Views
    3,413

    Reverse Polish Notation???

    Does anyone have the code readily available for RPN??

    Just incase you are wondering what RPN is, It is what the compiler sees when you enter a line like 5+2 which it would see
    5 2+ or something...
  21. Replies
    2
    Views
    1,802

    you would use a for loop first print the first...

    you would use a for loop

    first print the first 2 numbers

    for (i=0; i<total;i++)
    {
    num3=num1+num2;
    num1=num2;
    num2=num3;
    // then just your printout being num3
  22. Replies
    3
    Views
    966

    what does this actually do??

    using namespace std;

    I have no idea what the importance of the above is.

    Thanks
  23. Replies
    11
    Views
    5,010

    There is really only one way to become a security...

    There is really only one way to become a security expert and that is to be on the other side first...

    ya gotta be able to create things in order to know how to stop them.
  24. Replies
    2
    Views
    1,834

    Does anyone know...

    Does anyone know of some good DOS(win 98)/ commandline(2000) tutorials. I need something that will help with things from the basic to the most complicated things. Thanks
  25. Thread: Help!

    by Wizard_D
    Replies
    7
    Views
    1,243

    Poll: That seems like a hard question for someone that...

    That seems like a hard question for someone that has not done anything previously in programming.

    Bear don't get discouraged it will all come.
Results 1 to 25 of 34
Page 1 of 2 1 2