Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    Quote Originally Posted by clone
    i'm software eng., i'm a student.
    so i would like to know more about programming, i mean to build a system. my projet last year is on xml, and file maker pro. ca u help me out???
    Build a system?





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  2. #17
    shercipher's Avatar
    Join Date
    Dec 2005
    Posts
    108
    Reputation
    10
    Thanks
    14
    You won't get deprecation errors on VS 2003. Microsoft doesn't follow this standard, I guess you would call it, since the entire C/C++ programming community, besides Microsoft, has embraced this. Try running the code on mingw32 and you'll get the error, but it works fine in VC++.

    But anyways, we are getting off topic. Like I said, that is ANSI C, type it into a C only compiler and it will run.

  3. #18
    Associate's Avatar
    Join Date
    Dec 2005
    Posts
    89
    Reputation
    10
    Thanks
    10
    ok guys apology for the interruption, IÃÃâ€*’¢ÃÆ⠀™Ãƒâ€šÃ‚¢ÃƒÂ¢Ã¢â€šÂ¬Ã…¡Ãâ⠂¬Å¡Ãƒâ€šÃ‚¬ÃƒÆ’¢ââ‚ ¬Å¾Ã‚¢m quite interested to learn C++ but have no initial background or knowledge bout this whatsoever, so where should I start first?
    anyway I start reading several introductions & tutorials, but what specific program could i execute this?

  4. #19
    fl0's Avatar
    Join Date
    Dec 2005
    Posts
    98
    Reputation
    10
    Thanks
    89
    im with associate...wtf

  5. #20
    Associate's Avatar
    Join Date
    Dec 2005
    Posts
    89
    Reputation
    10
    Thanks
    10
    I've done some research & i think they run this thing using some sort of compiler, say, could you guys provide us with some links where to download one?

  6. #21
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    I will help you when I get home.





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  7. #22
    shercipher's Avatar
    Join Date
    Dec 2005
    Posts
    108
    Reputation
    10
    Thanks
    14
    Errr, yeah...

    The best thing to learn from, besides a class, is books. Go to a bookstore one day and just read them.

    C++ isn't cake, so just remember that. To run a C++ program, you need to write it then compile it. Compiling it turns it into an exe which your machine can execute.

    To compile sources you need a C++ compiler. I recommend for windows users mingw32. Its a port of GCC. Anyone using a nix, you already should have a c compiler installed (try "cc" or "gcc").

    Here is a site with a development environment: www.codeblocks.org

  8. #23
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    If you can't afford a book, simply look up tutorials or ebooks on the internet. They are of great help but, a mess if you can only read it on your computer.

    GCC is a free compiler and pretty easy to use compared to VS. It will handle all your compiling needs, if you don't like it try VS or just google up a list of other free compilers. You shouldn't get in C++ unless you have had prior programming knowledge.





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  9. #24
    shercipher's Avatar
    Join Date
    Dec 2005
    Posts
    108
    Reputation
    10
    Thanks
    14
    Trust me. C was the first language I learned, and it was hell. But I got throught but only through lots of effort, lots of frustration, and lots of effort. I suggest starting easier. BASIC is a good place to begin, if you want to go the nix way, I suggest perl because it is awfully easy but it can do anything.

  10. #25
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    I suggest learning VB. Its hella easy if you are in a class or look at some tutorials. VB.net is something you should look into compared to normal VB. Perhaps learning PHP will make learning higher languages such as C++ easier.





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  11. #26
    shercipher's Avatar
    Join Date
    Dec 2005
    Posts
    108
    Reputation
    10
    Thanks
    14
    Don't expect them to be the same. Neither perl nor PHP nor VB to some extent (not counting references) touch the concept of the C pointer and most people spend months trying to figure these out (it took me like, a year...how slow I am)

  12. #27
    Mortifix's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Posts
    77
    Reputation
    29
    Thanks
    14
    Here is a free C++ compile https://www.bloodshed.net/dev/devcpp.html. C++ isn't that hard...once you grasp the main concept of it, the rest comes easy. The one thing I did hate however was Arrays

  13. #28
    shercipher's Avatar
    Join Date
    Dec 2005
    Posts
    108
    Reputation
    10
    Thanks
    14
    Just wait until you get to pointers.

    Arrays aren't that hard...its probably because you haven't had to use them yet.

    Here's a basic example with some - say I want to print out three numbers. You'd say well make three int variables.
    Code:
    int i1, i2, i3;
    cout << i1 << i2 << i3;
    But what about 5?

    Code:
    int i1, i2, i3, i4, i5;
    cout << i1 << i2 << i3 << i4 << i5;
    100?

    Code:
    int i1, i2, i3, i4, i5, i6, i7, i8...
    cout << i1 << i2 << i3 << i4 << i5 << i6...
    Exactly. Simple make an array of 100 size

    Code:
    int i[99]; //remember, computers count from 0, so this is the correct size
    and use a for loop to print them out.
    so here is an example. it both initializes and prints an array of ones.

    Code:
    #include <iostream>
    
    int main() {
      int i[99], x;
      for(x=0;x<100;x++) {
        i[x] = 1; //reference member 'x' of array i
      }
      for(x=0;x<100;x++) {
        cout << i[x] << endl;
      }
      return 0;
    }

  14. #29
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    BTW: Arrays start with 0, thats why he set the size of the array to 99...





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  15. #30
    TsumikiriX's Avatar
    Join Date
    Jan 2006
    Posts
    20
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by arunforce
    If, I remember correctly, with my limited knowledege of C++, printf is useable in C++ and C#.

    Dave kept trying to make me use printf instead of std::cout << ""

    I thought C# had more of a Java syntax.... o.o

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Neopets - NeoQuest II Trainer
    By sockopen in forum Visual Basic Programming
    Replies: 12
    Last Post: 07-03-2007, 01:19 PM
  2. The Warrock Trainer
    By tomvernons in forum WarRock - International Hacks
    Replies: 4
    Last Post: 02-05-2006, 01:23 AM
  3. (SEARCHING)WarRock Trainer
    By User Namem in forum Hack Requests
    Replies: 11
    Last Post: 02-02-2006, 07:48 PM
  4. Trainer?
    By outrage20 in forum Gate To Heaven Hacks
    Replies: 1
    Last Post: 01-17-2006, 05:52 AM
  5. MPGH Warrock Trainer v1.010206
    By Dave84311 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 01-10-2006, 06:41 PM