Thread: Im confused

Results 1 to 7 of 7
  1. #1
    sogrurr's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Vancouver
    Posts
    23
    Reputation
    10
    Thanks
    0

    Question Im confused

    So C+++ can be used to make hacks..
    I want to make some warrock hacks but I'm not sure how.
    Do you download C+++ or something like that?

    Also I have been reading some of the topics..and I came across somethings like.
    "Get C++ and learn from that, instead of going straight to C+++"
    etc.

  2. #2
    loofa's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    Theres nothing thats C+++, C++/C is a computer language used in programming things, go look online tuts for them and read them.

  3. #3
    sogrurr's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Vancouver
    Posts
    23
    Reputation
    10
    Thanks
    0
    I've been looking for TuT's, and found some..
    So right now..I'm looking for a download.
    (Is it downloadable?)

  4. #4
    tednugent's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    /bin/src
    Posts
    3,592
    Reputation
    17
    Thanks
    610

    Arrow

    You're looking for a compiler.

    A compiler will take your code and turn it into an executable file that will run the code that you wrote.

    For example:
    Code:
    #include <iostream.h>
    #include <string.h>
    
    using namespace std;
    
    int main()
    {
          cout << "Hello world";
          return 0;
    }
    Would compile into an executable file that would flash a command prompt window reading "Hello world".

    I suggest either Visual C++ express or bloodshed dev C++.

    Visual C++ 2008 Express Edition
    Bloodshed Software - Providing Free Software to the internet community

    After you get the compiler, you're going to want a tutorial, just use Google
    Last edited by tednugent; 09-01-2008 at 12:34 PM.

  5. #5
    sogrurr's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Vancouver
    Posts
    23
    Reputation
    10
    Thanks
    0
    So C+++ Is just a compiler.
    What about Visual Basics. What's that?

  6. #6
    sgtmattbaker's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    85
    Reputation
    10
    Thanks
    8
    C++ is a computer language, a compiler is what turns your codes into a program or .dll

    visual basics is a different computer language

  7. #7
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by sogrurr View Post
    So C+++ Is just a compiler.
    What about Visual Basics. What's that?
    A c++ compiler will take your code and compile it into object files and then is linked into an array of bytes know as objectcode, this will then be read by the processor. Of coarse not all programing languages are compiled this way, java for example it compiled into bytecode and read by the java runtime and translated into objectcode as your processor cannot read bytecode. Or I beileve thats how the process works, not too sure, but its what I've learned so far from the book I'm reading.

    Its C++, not C+++.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


Similar Threads

  1. I'm Very Confused
    By Mike Green Day in forum General
    Replies: 14
    Last Post: 04-03-2015, 05:46 PM
  2. Cheat engine detected/undetected (I am confused!!!)
    By Logica in forum General Game Hacking
    Replies: 11
    Last Post: 08-16-2008, 05:16 AM
  3. Retailcode generator scam.. :confused:
    By jaqq3000 in forum Visual Basic Programming
    Replies: 3
    Last Post: 11-05-2007, 08:33 AM
  4. Confusing error(?)
    By juppeli in forum C++/C Programming
    Replies: 1
    Last Post: 09-07-2007, 11:56 PM
  5. Kinda Confused.. Help?
    By Ipasah in forum General Game Hacking
    Replies: 4
    Last Post: 05-24-2007, 12:23 AM

Tags for this Thread