Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49

    Does anyone want me to make a c++ tutorial?

    I understand that there are a lot of ebooks, videos, books, teachers, and forums that teach you c++, but if there is anyone that is interested in c++ tutorials I could start posting threads that have detailed c++ tutorials. I am guessing this is for people who don't want to read an ebook and want maybe a thinned down version, THAT STILL HAS ALL CRUCIAL INFORMATION.

    Disclaimer: I am not like NOOB, whit, mmbob, Crash, freedompeace, flameswor10, topblast, and others. The previously mentioned guys are f*cking elite, but they're too busy being 1337 to make tutorials (or they just advocate reading books).


    Either way if anyone thinks they could use these then feel free to hit thanks and I will know whether it will be a waste of time or not. Thanks a lot




    Example of first tutorial:
    Code:
    Chapter One: Setting Up
    - Is C important to learn before c++
    - Some basics before writing your first code
    - How your compiler works to create a program (.exe)
    - Writing your first program (Hello World)
    - Overview 
    **might add section where you can practice**
    ^^ very brief sections of chapter one, but as you can see I am covering most of the basics (again this is only chapter one out of maybe 20-25)
    Last edited by FailHacker; 07-05-2011 at 06:05 PM.
    Legen...wait for it...dary







  2. #2
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by FailHacker View Post
    Disclaimer: I am not like NOOB, whit, mmbob, Crash, freedompeace, flameswor10, topblast, and others. The previously mentioned guys are f*cking elite, but they're too busy being 1337 to make tutorials (or they just advocate reading books).
    LOL WAT? TOPBLAST AND ELITE DONT FIT TOGETHER LMFAO.
    Also sure, go for it
    Ah we-a blaze the fyah, make it bun dem!

  3. The Following User Says Thank You to Hell_Demon For This Useful Post:

    whit (07-06-2011)

  4. #3
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49
    lol why not, i think hes good

    I am just waiting for what the community thinks
    Legen...wait for it...dary







  5. #4
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Chapter 1:
    1.Knowing C makes you know a lot of C++, and vise versa, so no.

    2.Download an IDE

    3.preprocessing->Compile->assemble->link

    4. #include <iostream> int main(int argv, char* argv[]){std::cout<<"hello world\n";return 0;}

    5. C and C++ are very similar, you download IDE, it compiles, there is teh code

  6. #5
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49
    I am not just answering the questions, I am going in depth, and keep in mind this is for total new people trying to learn.
    Legen...wait for it...dary







  7. #6
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    The answer to the first question is a simple no. No more depth needed. just no.

    I cannot see any other things to learn before writing the hello world

    at this point getting in depth of the process will confuse you, and it is not really needed to know either.

    gave code right there.

  8. #7
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49
    Okay well if you think this is a waste of time then I won't do it.

    Plus most people can easily c+p the code its like 8 lines of code, but guess how many of them understand the preprocessor (#includes), or what namespaces are, or the point of "return 0;", etc.
    Legen...wait for it...dary







  9. #8
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Ooh I'm considered an elite
    No I do not make game hacks anymore, please stop asking.

  10. #9
    ᶠᶸᶜᵏ's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    174
    Reputation
    36
    Thanks
    159
    Quote Originally Posted by FailHacker View Post
    I I am not like NOOB, whit, mmbob, Crash, freedompeace, flameswor10, topblast, and others.

    freedompeace and topblast are NOT in the elite hack section group.

  11. #10
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by ᶠᶸᶜᵏ View Post


    freedompeace and topblast are NOT in the elite hack section group.
    Pretty Sure freedompeace dont care & topblast is not invited
    Do Not want to hear topblast over exaggerate his skillz

  12. #11
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Quote Originally Posted by FailHacker View Post
    Okay well if you think this is a waste of time then I won't do it.

    Plus most people can easily c+p the code its like 8 lines of code, but guess how many of them understand the preprocessor (#includes), or what namespaces are, or the point of "return 0;", etc.
    i've been coding for 2 years and i have yet to use a namespace and you don't need to know the point of return 0, just know you need it if successful or others numbers for certain errors

  13. #12
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49
    Quote Originally Posted by ᶠᶸᶜᵏ View Post


    freedompeace and topblast are NOT in the elite hack section group.
    How about you give me a revised list of the "elites" in the coding section. I am sure virtual void belongs in there.


    if you dont use a namespace do you never use cout or cin or anything in the standard namespace?
    Last edited by FailHacker; 07-06-2011 at 11:16 PM.
    Legen...wait for it...dary







  14. #13
    kibbles18's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    US
    Posts
    860
    Reputation
    5
    Thanks
    127
    i seriously hate console apps. they are so ugly and spoonfed
    Last edited by kibbles18; 07-09-2011 at 05:41 PM.

  15. #14
    FailHacker's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    444
    Reputation
    8
    Thanks
    49
    ^^ sorry I am not following your point
    Legen...wait for it...dary







  16. #15
    Arystar Krory's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    43
    My Mood
    Cheerful
    I could definitely use a tutorial on c++, When do you think it'll be out?

Page 1 of 2 12 LastLast