Results 1 to 5 of 5
  1. #1
    starpwnage's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    3
    My Mood
    Happy

    Few newb questions

    Ok, so im going to learn c++, and i have a COmpletle refrence guide to c++, roughly 1100 pages long. Its a real book, made of paper. I also sense i will be flammed.

    1)Now this book is mainly for c++ console apps, but after reading the first 30 pages, it seems simillar to vb, c# in things like float, double, long double, int, void e.t.c. So if i learnt all of it, would it make much use in programs like .dlls, or .exes?

    2) There is a table of how many bits something takes like int is 16 or 32 bits in size, float is 32 bit, and double is 62 bit. In things like say a spammer, where int, float or double, meaning single number (1,2,3) or 6 place precision or 10 place precision, what does it mean by size in bits? Is this like bits used in ram? If so, why do spammers really need the 10 didgets? when we can half the usuage and still have more then half the didgets, i mean who even needs 10 didgets when 6 is enough?

    3) Am i doing the right thing?

    If i have any further questions i will but them in this thread,
    Thanks in advance
    Merry christmas
    Respect List

    SethSkyler

    Im a person who enjoys to program and is willing to learn.

  2. #2
    falzarex's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Location
    here
    Posts
    417
    Reputation
    14
    Thanks
    145
    1. Nope not all u learn will help u make dlls/exes which are applicable to your needs
    and I highly doubt u will finish reading it
    2. No idea what u r talking about

    3.follow your instinct
    Quote Originally Posted by falzarex aka myself
    GTFO FUCKER U DONT BELONG IN THE INTERNETZ WORLD COZ ITS MINE


    This is an epic fail resume
    Hello VBfags.
    A 'member' of the almighty C++ section will soon join you, he is 13 year old, has the IQ and typing skills of a VBfag, so I thought he would fit in here nicely.

    A few reasons why he should be in this section instead of the C++ section:
    1) He has the IQ of a VBfag.
    2) He has no sense of grammer/spelling at all.
    3) He thinks he is pro(like most of the people in here)
    4) He thinks copy pasting is fun(exactly what you guys do)
    5) He loves it up the ass(he will keep you VBfags nice and warm)

  3. #3
    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
    MSVC++ on a 32 bit OS:
    char = 1 byte
    bool = 1 byte
    short(or short int) = 2 bytes
    int = 4 bytes
    enum = 4 bytes
    long(or long int) = 4 bytes
    float = 4 bytes
    double = 8 bytes
    long double = 10 bytes

    You can use sizeof(type) to get its size(e.g. sizeof(int) will return 4)
    Ah we-a blaze the fyah, make it bun dem!

  4. #4
    ilovecookies's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    In the C++ Section
    Posts
    321
    Reputation
    10
    Thanks
    67
    My Mood
    Shocked
    Quote Originally Posted by Hell_Demon View Post
    MSVC++ on a 32 bit OS:
    char = 1 byte
    bool = 1 byte
    short(or short int) = 2 bytes
    int = 4 bytes
    enum = 4 bytes
    long(or long int) = 4 bytes
    float = 4 bytes
    double = 8 bytes
    long double = 10 bytes

    You can use sizeof(type) to get its size(e.g. sizeof(int) will return 4)
    FYI! the sizeof(type) function can be found in the climits header file, most commonly included as such,[php]#include <climits>[/php]

    This personally confuses the shit out of me, but I guess it's just archetecture specific variables, I dunno.

    ALSO! to break it down a bit more, if you didn't know, 1 byte = 8 bits, I.e. 4 bytes would be 32bit, and 8 bytes would be 64 bit.
    Quote Originally Posted by Jules Winnfield View Post
    I am the tyranny of evil men, and you are all the weak. But i'm trying Ringo,i'm trying real hard, to become the shepherd.
    excuse me miss, would you kindly reflect some photons off the epidermis covering your sternum directly into the camera iris or vacate the proximity immediately
    [IMG]https://i882.photobucke*****m/albums/ac23/miki_d420/RealizingYoureALeecher2copy.jpg[/IMG]









  5. #5
    BxR.'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    0
    hey guess what you have been flamed

Similar Threads

  1. A few noob questions :)
    By obsessed in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 13
    Last Post: 07-07-2010, 04:54 AM
  2. My little newb question about Memory hacking[SOLVED]
    By 'Bruno in forum C++/C Programming
    Replies: 16
    Last Post: 06-20-2010, 02:01 AM
  3. umm guys.....newb question
    By Niku ・( ̄∀ ̄)・ in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 04-09-2010, 09:36 PM
  4. NEWB QUESTION HERE????
    By pojo114 in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 08-13-2009, 02:04 PM
  5. newb question =(
    By fable741 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-09-2007, 08:21 AM