Search:

Type: Posts; User: zigga15

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    16,800

    Install Linux - or even windows XP :P cmd.exe...

    Install Linux - or even windows XP :P

    cmd.exe is in the system32 directory, if you can run cmd (start->run->cmd.exe) you probably have a problem with VS linking to it. if you cant run it from...
  2. Replies
    17
    Views
    16,800

    seems like a windows error to me :P The...

    seems like a windows error to me :P

    The simplest way to see if it is cmd.exe or the path to cmd.exe is to write a program that does this:



    int main () {
    //nothing
    return 0;
    }
  3. Replies
    17
    Views
    16,800

    #include int main(){ std::cout

    #include <iostream>

    int main(){
    std::cout << "hello world!" <<std ::endl;
    return EXIT_SUCCESS;
    }



    std::endl; is there a space there?
  4. Replies
    23
    Views
    13,172

    Learning pointers is one thing, learning to...

    Learning pointers is one thing, learning to decompose a problem well is another. But all that aside, there are a lot of corner cases in postfix operations that you need to consider. And like tabstop...
  5. Replies
    17
    Views
    16,800

    yes reset. if that doesnt work post your code...

    yes reset.

    if that doesnt work post your code (in code tags) then at least we can verify if it is a windows error, or a developer error :P

    ~ Dan
  6. Replies
    17
    Views
    16,800

    Looks like windows has stuffed up, aside from...

    Looks like windows has stuffed up, aside from telling you to program in Linux with VIM - i would say to ctrl+alt+del end your cmd.exe process. If that doesn't work reset.

    Other wise it is a...
  7. Replies
    23
    Views
    13,172

    I wrote one of these for uni a few years ago,...

    I wrote one of these for uni a few years ago, wish I could find the code for you. I do remember that it was a lot shorter than your implementation though.

    The biggest thing that leaps out to me...
  8. Replies
    10
    Views
    2,327

    Have you tired a different language? I know it is...

    Have you tired a different language? I know it is hard to test against different languages, but C might be too high level in such an experiment. There would be more compiler/pre-compiler driven...
  9. Replies
    2
    Views
    1,261

    Google data encapsulation and ADT. Structures...

    Google data encapsulation and ADT.

    Structures are used in C similarly to how classes are used in C++. You use them when you want to capture a real world object.

    If you want to represent a bike....
Results 1 to 9 of 9