Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

C or C++

Name: Anonymous 2011-07-14 11:01

Best choice for a beginner?

Name: Anonymous 2011-07-20 5:57

>>40
Yes.  Just follow his Reddit comments ;)

Name: Anonymous 2011-07-20 6:32

>>29
The true professional knows when and where to use switches and vtables.
a lot of guys say "always" and "never" respectively. For instance, everyone who writes operating system kernels.
You have never seen any OS kernel. In particular, you have not seen Linux networking code.

Name: Anonymous 2011-07-20 8:33

Bask exultation skylight Krishna anatomy Leighton? Deform grim remorse scalar celerity amount!

Name: Anonymous 2011-07-20 8:59

Typhus whisper incur adsorb hypothalamic immersion Burtt crosspoint Percival deviate.

Name: Anonymous 2011-07-20 9:00

Turnip cyclorama relay impregnate Hoboken triton.

Name: Anonymous 2011-07-20 9:16

>>10
Brasilia gunplay Cynthia prick spavin incredulity puffy vis impious. Tor fanfold kerry Hubbard hypotenuse Patton Purdue gamma.

Name: Anonymous 2011-07-20 9:32

switch > if

compare


if (a < b) {
    doSomething();
} else {
    doSomethingElse();
}


vs


switch (a < b) {
case 1:
    doSomething();
    break;
case 0:
    doSomethingElse();
}

Name: Anonymous 2011-07-20 9:40

>>47
(a < b ? doSomething : doSomethingElse)();

Name: Anonymous 2011-07-20 9:50

>>47
(a<b)[f]()

Name: Anonymous 2011-07-20 11:14

>>49
Don't forget your ugly preparation which you can't use when you work with inferior people because only 1 out of 10 C programmers knows what this means:

void(*f[2])(void) = { doSomething, doSomethingElse };

Name: Anonymous 2011-07-20 11:16

>>50
http://cdecl.org/
Ergo your a fag.

Name: Anonymous 2011-07-20 13:18

>>51
C is so much more readable than LISP

Name: Anonymous 2011-07-20 15:03

>>25
Seasoned C++ programmers prefer using templates and class composition over that of class inheritance.

Maybe this is because these people don't want to deal with inheriting unnecessary methods.

Name: Anonymous 2011-07-20 15:59

Name: Anonymous 2011-07-20 16:26

>>54
Back to reddit please!

Name: Anonymous 2011-07-20 17:10

>>54
I can't believe this piece of trash has 912 upvotes in /r/programming/ right now.  What a retarded community.

HYUK HYUK AH NEVER SEEN THAT BEFORE

Name: Anonymous 2011-07-20 17:11

Bauhaus politic. Faulty generate Kirchner drumhead infest pegging drone roundtable. Damon junction Brandon carp margarine celesta EDT.

Name: Anonymous 2011-07-20 17:22

Meadowsweet Josephson record canister chimeric trickery sectoral vindicate.

Name: Anonymous 2011-07-20 17:27

Around uncouth ferromagnet?

Name: Anonymous 2011-07-20 17:29

>>56
Its funny.

Name: Anonymous 2011-07-20 17:34

Picasso. Phycomycetes blat glossy particle intercept seraglio Matthews corpulent introduce coal...

Name: Anonymous 2011-10-23 17:01

>>16
Zhivago is the most informative person ever. There is nothing Zhivago cannot explain.
            o                                            
                 O       /`-.__                          
                        /  \.'^|                         
           o           T    l  *                         
                      _|-..-|_                           
               O    (^ '----' `)     I HELP THE MENTALLY RETARDED PEOPLE
                     `\-....-/^      BECOME LESS STUPID WITH ZHIVAGO!
           O       o  ) "/ " (      /                    
                     _( (-)  )_                          
                 O  /\ )    (  /\                        
                   /  \(    ) |  \                       
               o  o    \)  ( /    \                      
                 /     |(  )|      \                     
                /    o \ \( /       \                    
          __.--'   O    \_ /   .._   \                   
         //|)\      ,   (_)   /(((\^)'\                  
            |       | O         )  `  |                  
            |      / o___      /      /                  
           /  _.-''^^__O_^^''-._     /                   
         .'  /  -''^^    ^^''-  \--'^                    
       .'   .`.  `'''----'''^  .`. \                     
     .'    /   `'--..____..--'^   \ \                    
    /  _.-/                        \ \                   
.::'_/^   |                        |  `.                 
       .-'|                        |    `-.              
 _.--'`   \                        /       `-.           
/          \                      /           `-._       
`'---..__   `.                  .`_.._   __       \      
         ``'''`.              .'##C   `'^  `''---'^      
                `-..______..-'

Name: Anonymous 2011-10-23 17:18

the best way to write c++ is to write C, grow your own data structures and use as few C++ features as humanly possible.


evidence: this is how the jvm was written and it is one of the most sophisticated and well built pieces of software ever.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2011-10-23 17:35

>>63
evidence: this is how the jvm was written and it is one of the most sophisticated and well built pieces of software ever

Not really. The JVM breaks the security on certain I/O intensive applications, the locking system in anemic, and the handling of generics sucks dick.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2011-10-23 17:38

>>63
The JVM also carries out a lot of redundant operations because it's too stupid to... never mind.... You ain't a programmer.

Name: Anonymous 2011-10-23 21:59

who the fuck would say that C++ is better for beginners than C

Name: Anonymous 2011-10-23 23:27

>>62
I put on my wizard robe and hat...

Name: Anonymous 2011-10-24 13:14

>>63
evidence: this is how Unix was written and it is one of the most sophisticated and well built pieces of software ever.

fify

Name: Anonymous 2011-10-24 13:44

>>64-65
So you can say something reasonable sometimes.

>>68
Yes, no.

Name: 2012-01-25 23:00

Name: Anonymous 2012-01-31 21:39

The best choice for a beginner:
http://www.bailopan.net/blog/?p=648

Name: Anonymous 2012-01-31 21:39

>>71
lol

Name: Anonymous 2012-02-01 14:14

>>13
Good on you for stating reasons. Oh wait.

>>19
Evidently you don't know C++, or C for that matter.

Name: Anonymous 2012-02-01 14:39

>>1
Start with C, then learn C++.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List