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

Pages: 1-4041-8081-120121-

My awesome C++ triangle

Name: GOD_HATES_THE_JEWS 2012-02-18 10:49

//Homework 2, question 5

#include <iostream>
using namespace std;

int main(void)
{
 int n;
 int r, c;

 cout << "Enter a number: ";
 cin >> n;
 
 n = 2 * n + 2;
 
 for (r = 1; r <=n; r++, cout << endl)
     for (c = 1; c <=n; c++)
         cout << (r==1 || r==n || c==1 || c==n
              || r >= c || (r+c < n+1) ? ' ' : '*');

 return 0;  
}

Name: Anonymous 2012-02-18 19:16

C++ implicitly excludes awesomeness.

Sepples is shit and so is your shitty code.

Name: Anonymous 2012-02-18 19:28

>>2
At least <<1 has the brain capacity to write code. Now shut up and go suck on another monkey's dick you mental midget you.

Name: Anonymous 2012-02-18 19:30

>>3
code monkey detected!

how's it feel spending 8 hours hammering away at your keyboard for a single bug?

stupid code monkey can't even think! LOL!

Name: Anonymous 2012-02-18 19:34

>>4
This is coming from a non programmer. And actually, it was only 6 hours you poor excuse for a homosexual.

Name: Anonymous 2012-02-18 19:40

>>3
At least I have the mental capacity to properly quote something, you stupid piece of shit.

C++ is a fucking joke, suck my balls.

Name: Anonymous 2012-02-18 19:45

>>6
You're just upset because, if given the same problem, you wouldn't have been able to solve it right away. Nice job princess. You're below average. Now go run off and get ready to serve your shift at Burger King.

Name: Anonymous 2012-02-18 19:48

>>7
It's easy you stupid piece of shit, if you think this is hard you should tell your mother to reconsider her choice of not having an abortion despite letting some mental midget inseminate her. Fuck off back to /g/ you fucking retard.

Name: Anonymous 2012-02-18 19:51

>>8
It's easy because >>1 alrady posted a solution you fucking no talent programmer. Also, you lame ass unoriginal bitch, come up with your own one liners instead of stealing mine.

Name: Anonymous 2012-02-18 19:52

>>9
Stay mad you fucking retard.

Name: Anonymous 2012-02-18 19:55

>>10
Go away. You are dumb and boring. Seriously. Your grammar sucks, you really don't know how to write code, and the extent of your arguments is stealing my one liners. Nice job nigger. You're below average!

Name: Anonymous 2012-02-18 19:56

>>9
So working from a clean slate, do you think writing a program that creates a text triangle is challenging?

Name: Anonymous 2012-02-18 19:57

>>12
It's the ultimate challenge in functional languages. Haskell experts have been trying and failing for years now.

Name: Anonymous 2012-02-18 19:58

>>12
For you yes. For me no, because, unlike you, I know how to write code. Again, there is as vast difference between saying you can do something and actually doing it. Hence why suck dick.

Name: Anonymous 2012-02-18 19:59

>>14
Hence why suck dick.
I think you need to take your pills.

Name: Anonymous 2012-02-18 20:01

>>15
Hush you.

Name: Anonymous 2012-02-18 20:03

>>14
Well, I hope you have a fulfilling life creating those text triangles.

Name: Anonymous 2012-02-18 20:09

>>17
I believe being able to solve the problem is what is known as basic problem solving. This is something that you seem to lack. By the way, I'm way beyond that you idiot. I do stuff like implement various types of optical flow algorithms and a bunch of other things that are wll beyond your limited mentality.

Name: Anonymous 2012-02-18 20:10

>>17
I've also contributed code to the apache hadoop project. Again, this is stuff well beyond your limited mental capacity.

Name: Anonymous 2012-02-18 20:13

>>18
By the way, I'm way beyond that you idiot.
I'm not convinced, you seem to think creating text triangles are difficult, which indicates that you're a stupid mouthbreathing piece of shit.

Name: Anonymous 2012-02-18 20:14

>>19
Yeah, was it a text triangle?
Were the Apache devs amazed at your incredible text triangle code?

Name: Anonymous 2012-02-18 20:15

>>20
Stop projecting. That is you who things creating text triangles are difficult. Again, please tell us what you do for a living you mental midget you.

Name: Anonymous 2012-02-18 20:16

>>21
Do you see a text triangle anywhere in the source code you mental midget? Exactly. Now shut up and go scrub another toilet you dumb nowhere bitch.

Name: Anonymous 2012-02-18 20:19

>>21
And I find it amazing how someone like yourself, who has zero credentials, can be so lippy. Maybe you should shut up and perhaps learn something from those of us who can write the non trivial code. Oh wait. That would require you to think!

Name: Anonymous 2012-02-19 0:09

>>22
That is you who things creating text triangles are difficult
Do you mean ``thinks''? And I never said it was difficult, I said it was easy, you're the one who thought it was a monumental challenge you dumb piece of shit.

>>23
I don't look at the code of shitty toy projects like Apache, sorry.

>>24
You're the lippy one you fucking faggot, all you have done is to claim that you contributed code to some unscalable shit that performs poorly like Apache. I don't see any proof in this thread you fucking retard.

Name: Anonymous 2012-02-19 1:18

ITT nerd fight.

Hawt :p

Name: Anonymous 2012-02-19 3:53

APL, 36 characters:
(⍪(1+(2×I)-N),¨N←N,1↓⌽N←⍳I←⎕)/¨⊂' *'
Try it in NARS2000.

Name: Anonymous 2012-02-19 11:36

>>25
You're just mad because that code is beyond your limited skill set. Now run off and go scrub another toilet you no talent bitch.

Name: Anonymous 2012-02-19 13:04

>>27
J, 24 characters:
' *'{~(*|.)}.<:/~i.2+2*n

(There's no decent I/O so just set n to some number; this makes your code 34 characters, without the ←⎕.)

Name: Anonymous 2012-02-19 13:11

   n =. 10            NB. Set n first
   2++:n              NB. Caclulate 2n + 2
22
   <:/~i.2++:n          NB. Table of x <= y, for [0..2n+2)
1
   <:/~i.2++:n          NB. Table of x <= y, for [0..2n+2)
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
   }.<:/~i.2++:n          NB. Drop first row
0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
   (*|.) NB. tacit function: (*|.) x == (x)*(|.x) (multiply by reverse)
* |.
   (*|.)}.<:/~i.2++:n          NB. apply it on our matrix
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
   ' *'{~(*|.)}.<:/~i.2++:n          NB. format, by indexing from ' *'
                     *
                    **
                   ***
                  ****
                 *****
                ******
               *******
              ********
             *********
            **********
           ***********
            **********
             *********
              ********
               *******
                ******
                 *****
                  ****
                   ***
                    **
                     *

Name: Anonymous 2012-02-19 13:11

(disregard lines 3-4, that was me fucking up)

Name: Anonymous 2012-02-19 15:06

>>28
You still seem to think that creating a text triangle is hard, why is that? Are you really this fucking untalented?

Name: Anonymous 2012-02-19 15:31

>>32
No sir, that would be you. Now go off and continue to look like a dumbass when reading the apache hadoop source code you damn mental midget. Or better yet, give up your dreams of ever becoming a programmer, accept the fact that you are a zero talent bitch, and continue to smile as you scrub those toilets.

Name: Anonymous 2012-02-19 15:54

>>32
Also you uncreative nigger, stop stealing my one liners and come up with your own. I know this might be kind of hard since you are a total dumbass, but at least try you dumb douche.

Name: Anonymous 2012-02-19 20:54

>>33,34
Still no proof that you contributed to anything, even to shit projects like Apache.

Name: Anonymous 2012-02-19 20:55

>>33
No sir, that would be you.
I always said it was easy, you said it was extremely challenging.

Name: Anonymous 2012-02-20 7:54

>>35
And you still haven't shown us any kind of proof that you can code anything beyond "hello world" in Python.

Name: root@eecs.berkeley.edu !!zP3z7jK93VrbiW0 2012-02-20 7:58

>>36
Go run off and scrub another toilet you mental midget you.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2012-02-20 8:10

>>35
Actually, now that I think about it, you still haven't demonstrated anything beyond the ability to call people names. What do you do for a living? Have you ever actually written a single line of production code in your entire life?

Name: Anonymous 2012-02-20 8:22

Sure is wannabe Kodak-sans in here. Wanting to grow up to be a aspirng java codemonkey must be lovely.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2012-02-20 8:27

>>40
I'm the same person you foolholio. Now let's all wait for some brilliant response from this no talent bitch that doesn't write code for a living.

Name: Anonymous 2012-02-20 8:32

You should write this in D

Name: Anonymous 2012-02-20 8:34

>>42
Yo homegirl, stop fagging up my 4chan experience. Thank you.

Name: Anonymous 2012-02-20 9:21

kodak_gallery_programmer!!kCq+A64Losi56ze
you still haven't demonstrated anything beyond the ability to call people names.


This applies to someone else in this thread, too. Just fuck off.

Name: Anonymous 2012-02-20 9:29

>>41

#include <stdio.h>
int main(int argc,char *argv[]) { puts("Look at me writing my one liners, I'm just a cool ass java codemonkey that thinks triangles are so hard. Man, programming is so hard. I doubt other people could manage to do such things as I do with their limited mental capability."); }

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2012-02-20 18:30

>>45
I didn't think this was possible, but yes, wait for it...YOUR PROGRAM HAS UNDEFINED BEHAVIOR! Wow. Just wow.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2012-02-20 18:35

>>45
I think someone needs to practice drawing some triangles.

Name: Anonymous 2012-02-20 19:07

>>45
Thanks for trolling kodak!

Name: Anonymous 2012-02-20 19:07

>>46
>>47
Kodak-san, why do you samefag so much to try and make yourself seem anymore better than the next anonymous faggot on this board?


If anything you just make yourself look like a toilet scrubber who does nothing but sit on this board attempting to make fun of other people while failing to provide a single drop of evidence for your own success.

Your trolling is getting beyond ridiculously and I've quite had it with you and your java codemonkey manners.

With that being said, I have reported you. Hopefully moot decides to purge this board of shitposters like you that have the mental capacity of a 2 year old.

Name: kodak_gallery_programmer !!kCq+A64Losi56ze 2012-02-20 19:17

>>48
I'm not trolling. There was a discussion revolving around a similar problem like maybe 2 months ago. Dunno, I might actually dig up the pold post since are a total clueless douchebag.

Name: Anonymous 2012-02-20 19:19

>>49
read >>50 you hoser. Geeze. Now I see why you all are in fact toilet scrubbers.

Name: Anonymous 2012-02-20 19:20

>>50
kodak, you're a shitposter and a troll. You're everything wrong with tripfags. You are at times as bad as FrozenVoid and then on top of that you think so highly of yourself when in reality you're just a shitty java codemonkey.

Name: Anonymous 2012-02-20 19:26

>>52
You're just mad because you still can't spot the undefined behavior in the program. Now pee wee, maybe you should give it a rest, find the old thread in question, try to follow it, and then see what I just saw right away.

Name: Anonymous 2012-02-20 19:32

>>51
oh look, kodak is samefagging again to try and make himself more relevant.

>>53
>You're just mad because you still can't spot the undefined behavior in the program.
Really kodak? I never knew this whole time I was suppose to be looking for undefined behavior in the code posted. Way to completely switch the topic on us. It's not even hard to spot anyway considering the function `int main...' has no return statement.

>maybe you should give it a rest, find the old thread in question, try to follow it, and then see what I just saw right away.

Oh, so now we switch the topic again and now you want me to find you some shitty thread posted months/years ago? Good one, how about you be the little codemonkey you're and do it for us.

Name: Anonymous 2012-02-20 19:36

>>54
The person that posted that code is clueless. The fact that he was trying to make himself look smart makes him that much dumber. Now go away. You're not only dumb, but you're also boring. And yes, that's bad. Hell, even the clueless computer science major who is dumber than a box a rocks is more interesting that you.

Nice job homer. You're below average!

Name: Anonymous 2012-02-20 19:40

>>55
Seeing as how you have a mental capacity of a baby, and can only argue by spouting out ad hominems like no other, I can see there's little hope with discussing anything with an ignorant dense pleb such as yourself.

Go off, enjoy your life as a codemonkey sheep. Enjoy thinking you're special when in fact you're not.

Name: Anonymous 2012-02-20 19:44

>>56
You're just mad because you know that deep inside you will never amount to anything more than some tech support monkey.

Name: Anonymous 2012-02-20 19:45

>>57
Keep the ad hominems flying kodak. Someday you might win the argument, oh wait....

Name: Anonymous 2012-02-20 19:54

>>58
And one day you might get a clue about programming. Oh wait...How not cute. You're hooching my one liners again.

Name: Anonymous 2012-02-20 19:57

>>59
You think you own the rights to one liners like "Oh wait..." or "Someday you might win the argument"?


Thank you for further showing how big of a moron you truly are

Name: Anonymous 2012-02-20 19:59

>>60
No, but i like to claim that I have enough of a brain to come up with my own creative insults. Now go run off and molest another cow.

Name: Anonymous 2012-02-20 20:06

>>61
Yes, because you're the only one that is allowed to use stock insults.

Please, get a life and grow up kid. Come back when you're mature enough to be on a textboard and act properly.

Name: Anonymous 2012-02-20 20:09

>>62
As opposed to repeating what you see? Now again, you still haven't told us what you do for a living. Are you ashamed of your $18.25/hr general labor job?

Name: Anonymous 2012-02-20 20:11

>>63
>As opposed to repeating what you see?

says the man that sits on textboards all day calling people mental midgets and toilet scrubbers because he can't come up with a decent insult to save his life

Name: Anonymous 2012-02-20 20:15

>>64
Is that why you insist on stealing mine you moron?

Name: Anonymous 2012-02-20 20:17

>>65
Stealing? Ha... Please kodak-san, take the time to come up with better comebacks than just insisting i stole your words.

2 year olds can troll better than you can.

Name: Anonymous 2012-02-20 20:22

>>66
I'm being honest you minimum wage idiot. I use some lame line, tnen like the dumb faggot you are, you use the same damn thing 4 posts later. Now again you mental midget, what do you do for a living?

Name: Anonymous 2012-02-20 20:26

>>67
Again, there you go with the baseless ad hominems.

It amazes me how trolls can be such failures when it comes to arguments.

Name: Anonymous 2012-02-20 20:27

>>68
You still aren't answering my question. Given your lame technical responses, I'm going to say that you don't work any kind of programming job.

Name: Anonymous 2012-02-20 20:29

>>69
Must I work as a code monkey in order to point out how big of a troll and failure you're?

Damn man, i feel so shitty now that i'm not some code monkey making 40k/yr workign 100 hours + a week.

Boy did i luck out.

Name: Anonymous 2012-02-20 20:31

>>70
No. But don't get your panties in a bundle when I point out a programmer error that only a programmer would know about. Now shut up and try to learn something you damn idiot.

Name: Anonymous 2012-02-20 20:36

>>71
I already pointed out what one of the original problems of that code was posts ago. How about you take the time to actually read the posts instead of spewing out more ad hominems to sound like an edgy fuck that thinks he's a know it all

Name: Anonymous 2012-02-20 20:42

>>72
Uhh....a missing return statement doesn't really constitute an error. I know this might sound kind of shocking, but something like a MS compiler would accept main() without a missing return statement. Yes, it's kind of idiotic, but the point is, a missing return statemet in main() doesn't scream "ERROR". But again, I wouldn't have expect your monkey ass to know something like this.

Now back to my point. There is a really subtle error in puts().

Name: Anonymous 2012-02-20 20:49

>>73
So you're claiming a function that should have a return statement, but doesn't is okay just because certain compilers will fix your shitty mistakes?

Good one.

Name: Anonymous 2012-02-20 20:53

>>74
You've never written a single line of code have you? Anyways, there is an error in that code that, no matter how shitty the compiler is, won't catch. The fact that you don't see it is okay. The fact that you keep arguing with me just implies you are some boneheaded fag that refuses to learn something.

Now shut up and tell me what the error is you mental midget you.

Name: Anonymous 2012-02-20 21:00

>>75
Aww yes, deal lord i don't find subtle C undefined behavior.

Good lord, you don't know C? You must not know shit. so edgy look at me stylin on you xD

Name: Anonymous 2012-02-20 21:02

>>76
I'm not that one that said 'return' was the error. You did. And the fact you stood by that lame assertion until I pointed out that some shitty compiler would still accept that construct means that you don't know the language. So not only are you stupid, but it now looks like you're projecting.

Now perhaps you should stop getting your panties in a bundle, find the old thread that discusses a similar problem, and then tell me what the error is you fucking moron.

Name: Anonymous 2012-02-20 21:05

>>77
I'm not that one that said 'return' was the error.
I said it was ONE of the errors. Please if you're going to quote my previous posts then quote them correctly.

The fact that a shitty compiler accepts it doesn't make it any betters. GCC will accept compile functions with no return when they should have one as well.

You shouldn't be proud about how your shitty mistake will work with shitty compilers.

Name: Anonymous 2012-02-20 21:07

>>78
But it's not THE error. Stop using caps to stress your stupidity you fuckng non programmer you and tell me the real error you fucking mental midget.

Name: Anonymous 2012-02-20 21:09

>>78
And I didn't write that code you fucking idiot. Man you are one stupid SOB.

Name: Anonymous 2012-02-20 21:10

2012
undefined behaviour
toy program
flame war: 32 posts

Oh kids, you're funny.

Name: Anonymous 2012-02-20 21:12

>>79
but it is ONE of the errors.


The fact that you also think programmers can not be programmers without knowing C or all of it's shitty undefined behavior just makes you look even worse.

You're a troll that can do nothing but switch to the nearest topic that you think you have a chance to win in because you know your shitty ad hominems get you no where in a real argument. So instead you'll find another thing to nitpick at and claim is wrong just to further yourself in an argument that has gone so far off topic from the OP that it's ridiculous

your shit posting is annoying, you're a bad troll that can't function in normal society.

Name: Anonymous 2012-02-20 21:13

>>81
This mental midget, who clearly doesn't have the mental capacity to be a programmer, is not only dumb, but also annoying.

Name: Anonymous 2012-02-20 21:13

>>80
Quick! to the ad hominems! maybe that'll win you the argument, oh wait, it won't.

Name: Anonymous 2012-02-20 21:14

>>81
Leave it to a tripfag to shitpost for 16 straight posts about undefined behavior in a toy program.

Name: Anonymous 2012-02-20 21:18

>>85
You, along with that idiot >>84 still don't see it do ya? Man you are a shitty excuse for a wanna be programmer. I think the both of you need to take up something a tad bit easier. Say like golf. Because it's pretty clear that programming is either one of you foolholios thing.

Name: Anonymous 2012-02-20 21:19


#include <stdio.h>
int fac(int n)
{
  int *p = &n;
  --p;
  *p = 0;
}

int main(int argc,char *argv[]) {
  printf("check out my undefined behavior levels %d\n",fac(0));
}

Name: Anonymous 2012-02-20 21:21

>>86
wanna be programmer

this is what elitists really think?

You codemonkeys think you're in some kind of special club?

hahahah, enjoy being replaced by some 10 year old in India that's 10 times smarter than you.

Name: Anonymous 2012-02-20 21:21

It's not even undefined behavior!
5.1.2.2.3 Program termination
1 If the return type of the main function is a type compatible with int, a return from the initial call to the main function is equivalent to calling the exit function with the value returned by the main function as its argument;10) reaching the } that terminates the main function returns a value of 0. If the return type is not compatible with int, the termination status returned to the host environment is unspecified.
Look at this part:
reaching the } that terminates the main function returns a value of 0.
Also the line break in the string literal is caused by word wrapping on the text board, not a newline.

Name: Anonymous 2012-02-20 21:22

>>88
It's not my fault you got shafted in the IQ department.

Name: Anonymous 2012-02-20 21:23

>>89
Also the line break in the string literal is caused by word wrapping on the text board, not a newline.

It's not word wrapped on my screen.

What are you, some kind of peasant with 800x600 CRT still?

Name: Anonymous 2012-02-20 21:24

>>89
Someone just got owned.

Name: Anonymous 2012-02-20 21:24

>>92
so edgy look at me i owned you xD

Name: Anonymous 2012-02-20 21:26

>>87
Nice failed attempt to screw up the stack.

Name: Anonymous 2012-02-20 21:28

>>93
Huh? I'm not the one looking like the uneducated idiot in this thread. Perhaps you should give 4chan a rest, and go play WOW. I would give it a rest and write some code, but like, you've clearly demonstrated that you're challenged by the most basic programs.

Name: Anonymous 2012-02-20 21:31

>>95
There you go again with the baseless ad hominems kodak. Not only that but you once again seem to think Programming <=> C, and on top of that, that it's some hard magical powers that only an intelligent1 such as yourself would understand.

[m]
1. mental midget
[m]

Name: Anonymous 2012-02-20 21:34

>>96
This only just one thread. What about you uneducated and idiotic statements on other topics? And in other threads? Man, I swear, your mom must have dropped you on your head as a baby.

Name: Anonymous 2012-02-20 21:39

>>97
Now you're trying to switch the topic again and try and break into other things?

I don't see where you're going with this Kodak, other than a desire to shitpost in more threads to derail them permanently with your shitposting bullshit.

Name: Anonymous 2012-02-20 21:46

>>96
``Menstrual midget'' is a superior insult.

Name: Anonymous 2012-02-20 21:53

Check my dubs

Name: Anonymous 2012-02-20 22:07

>>100
Oh Great Dubs Lord, /prog/ shitposting skills are increasing.

Name: Anonymous 2012-02-21 11:02

>>98
You don't see a lot of things. This is why you are a nowhere bitch. Now shut the fuck up and go scrub another toilet.

Name: Anonymous 2012-02-21 11:08

>>102
Oh look, more ad hominems from kodak in an attempt to win the argument still.


It's funny how such a failure of a troll you're that you can only sit there and resort to cheap ad hominems

Name: Anonymous 2012-02-21 11:30

>>103
You just can't accept that fact that you suck dick as a programmer. Go take up something that requires a little less mental power. Like say, scrubbing a toilet.

Name: Anonymous 2012-02-21 11:30

>>104
hahaha oh god your joke is so funny I can't stop farting

Name: Anonymous 2012-02-21 11:41

>>105
Eh? Tell me again you can't locate the error. Tell me again why you thought 'return' was an error. Tell me again why you don't work as a programmer. Tell me again why are still a virgin.

Name: Anonymous 2012-02-21 11:42

>>104
man I should make a bot that just sits on /prog/ all day and responds to your shitty ad hominems.

What bothers me the most is that you claim to be some professional enterprise java programmer yet all you do is sit on /prog/ spouting ad hominems all day long. Sounds like someone is lying.



sssssyddddddddddddddhhhhdddddddddddddddddddddhysssso+++yhhhhddyssddddddddhhyddddddhdddddddddddddhdhhyhhhhhdsoyhdhhhhyoooooooo
sssssym.```oM+```/M-``````-Ns```````yM``````.-/dhoo++hy:`    ./dhN.`````../yMs```/Nd.``-m-```/My```:NN-```Nyd+.    `/yh//////
sssssym`   +d   `mM.   `..:Ns    ...hM    ./`  `Nsssdy    o/   `mM`   .:    hN.  `m/   sN.   :My    sM.   NN.   :o   `yy:::::
oooooym`   +-   sdM.   -Nhhms    ddhdM    :M-   NhhhN/    My    hM`   :M.   oNy   s`  -NN.   :My    `d.   Nm    oN`   /m+++++
+////om`   `   :m+M.   .ssyMs    +ssNM    :d.   NdhhN:    Mh````yM`   -o`  `hhN-  `   dhN.   :My     :.   Nd    oMyyyyhNsssss
+++++om`       /d:N.      :Ms       mM     `   :NdhhN:    MNmmmmNM`    `  .sNyhh`    /myN.   :My          Nd    o/----oNsssss
ooooosm`   .   `doN.   .hyhNs    syyNM    .ssshmddddN:    Mm++++dM`   :m.   ydym/   `myyN.   :My   :`     Nd    oo`   /Nsssss
oooosym`   +-   :mM`   -Nhhms    dNmmM    :NmddddmmmN/    Mh    yM`   :M.   oNdNo   .NyyN.   :My   ++     Nd    oM.   /Nsssss
sssssym`   +y    yM`   `:::ms    -::oM    :MmmmmmmmmNs    y+   `mM`   :M.   oNmNo   .NsyN.   :My   oN.    NN`   :y`   /Nsssss
sssssym````+N-```.N.```````ds```````/M`` `/NmmmmmmmmmNo-`    `:hNM`  `:M- ``oNmNs```-NssN.```:My```oMy````Ndh:`  `.:``/Nsssss
sssssymhhhhdmdhhhhddhhhhhhhdmdmmmmmmmNmmmmmNmmNmmNNmmmNmmdhhdmmmmNmmmmmNmmmmmNmNNmdddmssdhhhhhmdhhhdddhhhhdyyhhyyhddhhddsssss
sssssssssssssssssssyyyyyssshdmmmmmmmmmmmmmmmmmNNNNNNmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmddhhyssssssssssssysysssssssssssssssssssssss
sssssssssssssssssssssssssssddmmmmmmmmmmmmmmmmmNmmNNNmNmNmmmmmmmmmmmmmmmmmmmmmmmmmmmmdhdysssssssssssssssssssssssssssssssssssss
ssssssssssssssssssssssssssydmmmmmmmmmmmmmmmmmmmmmmNmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmdhhyssssssssssssssssssssssssssssssssssss
ssssssssssssssssssssssssysydmmmmmmmmmmmmmmmmmmmmmmmNNNNNNNNNNmmmmmmmmmmmmNNNNmmNmmmmmmmdhsssssssssssssssssssssooooossssssssss
ssssssssssssssssssssssyyyshmmmmmmNmmmmmmmmmmmmNNNNNNNNNNNNNNNmmNNmNNmmmmmmNmNmmmmmmmmmmmmysssssssssssssssss++/++ossssooooo++/
ssssssssssssssssssssssssysdmmmmmmNNNmmmNNmmNNNNNNNNNNNNNNNNNmmNmmmmmmmNmmmNmmNmmmNNmmmmmmdssssssssssssssssooo++++++++oosoosss
sssssssssssssssssssssssssydmmmmmmNNNNNNNNNNNNNNNNNNNNNNNNNNNmmmmmmmmmmmmmmmmmmmmmmmmmmmmmNysssssssssssoosoooosssssyyyyyyyyyyy
sssssssssssssssssssssssssymmmmmNNNNNNNNNNNNmNNNNNNNNNNNNNmmmmmmmmmmmmmmmmmmmdmmmmmmmmmmmmmhsssssssoossssssyyyysyssyyyyyyyyyyy
ssssssssssssssssssssssssshmmmmNNNNNNNNNmNNNNNNNNNNNNNNNNNmmmmddhhhhhhhhhhhhhyhhhhhhhhhhhhdmyssssoossssysyyyysyyssssssssysyyyy
ssssssssssssssssssssssssshmmNNNNmNNNNNNNNNNNNNNNNNmmmddddddddddddmmmdhhhhdddddhhhddddddhhhdyssssyyyyyyyyyyyyyyyyyyysyyyyyyyys
ooooooossssssssssssssssssdmmNmNNNNNNNNNNNNNNNmmdddddddddddddddmmmmmNmdddddmmmmNNNNNmmmdddddyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
++++++++++ooooooooooooooodmmmNNNNNNNNNNNmmddhhhhddddddddmmmmNNNNmmmmNmmmmmmmmmNNNNmmmmmmmmmmyhyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
sooo++++++++ooo+++///////ymmmNNNNNNNNdhhyhhhhhddmmmmmddddddddmmmmmNNNNNmmmmmNNNNNNNNNNNNmmmmhyyyyyyyyyyyhyyyyyyyyyyyyyyyyyyyy
ssssssssssssssssooo+++osyyhdmNNNNNmmdhhhhhddddmmmmmmmmmmmmmmNNNNNmNNNNmmmmmNNNNNmmNNNNmNmmdddsyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
sssssssssosoooooooosssdNNmmddmmmmmmmdddddddddmmmmmNNNNNNNNNNNmNNNNmmmmmdhhhmdmmmmdmmdddddddhdssssyyyyyyyyyyyyyyyyyyyyyyyyyyyy
/++++o+++////////+oo+yNNNmmmmmmmmmmmmdddddddddddmmmmmmmmmmmmmmmmdmdddmmdhhhhdddddmmmmmmmmddddyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
++ossso+++/////+++++oomNmmddmmmmmmmmmmmddddddddhdddddmmmmmmmmNmmddmmmdddhhhhhhddmddddhddhhddmmhhhhhhhhhhhhhhyyyyyyyyyyyyyyyyy
syyyysooo+++++oo+++++ohmmdmmmNNmmdmmmmmmdddhhddddddddddddddddmdddmdddddddhhhhhdddddhhhhhhhddmmddhhhhhhhhhhhhhyhyyhhyyyyyyyyyy
yyyyyssooooooooosooo+oohmddmmdmmdddmmmmmmddddddmmmmdddhhdddddddddmmmmmmddhhyyyhdmmmdddhhhhddmmddddhhhhhhhhhhhhhhyyhhyyyyyyyyy
yyyyyysssyyyyysossyosssshddmmddmdddmmmmmmddmmmmmmmmddhhhddddddmmmNNmmddhhhhyyyyhhhdmmdddhhdddddddhhhhhhhhhhhhhhhyyyyyyyyyyyyy
yyyyyyyyyhyyyyysyyyyhhhyydmmdhdddmdmmmmmmmmmmmmmmmdddhhddddddmmmmmmdhhhhddhhhhddddddmddddddmmddhhhhhhhhhhhhhhyyyyyyyyyyyyyyyy
yyyyyyyyhyyyyyyyyyyhhddhhddddhddmmddmmmmmmmmmmmmmmdddddddddddmmdmmmdddmmmmmmmmmNNmmdmNmmmmmmmmddhhhhhhhhhhhhyyyyyyyyyyyyyyyyy
yyyyyyhyyyhyyyyyhhhhhddddmmddhddddddmmmmmmmmmmmmmmmmmmmmmmdmmmddddmmmNmmmNNNmdddmddddmNNmmmmmmmdhhhhhhhhhhhhyyyyyyyyyyyyyyhhh
yyyyyyyyyyyyyyyyhhhhdddddmmmmddddmmmmmNmmmmmmmmmmmmmmmmmmmmmmdddddddddhhddddddhdddddmmmNNNNNmmmdhhhhhhhhhyyyyyyyyyyyyyyyhhddh
yyyyyyyyyyyyyyyyhhhhdddddmmmmmNmmmNmmNNNNmmmmmmmmNNNNNNNNNmmmmmddddddddddddhhddddmmmmNmmNNNmmmmddhhhhhhhhyyyyyyyyyyyyyyhhhhhh
yyyyyyyyyyyyyyyyyhhhhdddmmmmmmNNNNNmNNNNNNmmmmmmNNNNNNNNNNmNNNNmmmmmmmddddhdddddddddmNNNNNNNmmmmdhhhhhhhyyyyyyyyhyyyyyhhhhhyy
yyyyyyyyyyyyyyyyhhhhhdddmmmmmmmmNNmNNNNNNNNNmmNNNNNNNNNNNNNNNNmmmmmmmmmmmmmmmmmmmNNNNNNNNmNNNNNmhhhhhhhhyyhyyyyyyyyyyhhhyyyyy
yyyyyyyyyyyyyhyyhhhhhdddddmmmmmmmmmmNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNmNNNmmNNNmmmmNNmmNNNNNmdhhhhhhhhhhhhyyyyyyyhhyyyyyyy
dhhhhyyyyyyyyyyhhhhhhhhddddmmmmmmmmNNNNNNNNNNNNNNNNNNNNNmNNNmmmmmmmmddddddddhhhhhhhdddmmmNNNNNNmddddddddddddhhhhhhhhhhhhhhhhh
ddddddddhhhhhyyhhhhhhhhdddddmmmmmmmNNNNNNNNNNNNNNNNNNNNNmNmmddddddhhhhhhhhhhhhhhhhhhhhdmmNNNNNmddddddddhdhhhhhhhhhhhhhhhyhhhh
hhdddddddddddddhhhhhhhhhhddddmmmNmmNNNNMNNNNNNNNNNNNNNNNNmmmddddddddhhhhhhhhhhhhhddddddmmNNNmddddddddhhhhhhhhhhhhhhhhhhhhyhyh
yyyhhhhhhdddddddmddddhhhhhdddddmNNmmNNNNNNNNNNNNNNNNNNNNNmmddddddddddddddddddddmddddddmmmNNmdhdddddddhhhdhhhhhhhhhhhhhhhhhhhh
yyyyyyyyhyhhhhhhddddddddhhhddddddmNNNNNNNNNNNNNNNNNNNNNNNNNmmmddddddddmmmmmmmmmmmddddmmmNNmddhhdddddddhdddhhhhhdhhhhhhhhhhddd
yyyyyyyyyyyyyyyhhhhhhhddddhddddddddmNNNNNNNNNNNNNNNNNNNNNNmmmmmdmmmddmmmmmmmmmdddddddmmNNmdddhhddddddddddddhdhdhhhhhhdddddddd
hyyyyyyyyhhhhhhhhhhhhhhhhhhhhdddddddmmNNNNNMNMNNNNNNNNNNNNNNmmmmmmddddddddddddddddddmmNNmdddddhdddddddddddddddddddddddddddhhh
mmmdddhhhyyyhhhddddddhdddddddddddddmmmmmNNNNNNMMMMMMMNNNNNNNNNmmmmmmmmdddddddddmmmmmmmNmmmddhddddddddddddddddddddddddddhdhhhh
NNNNNNmmmdddhhyhhhhhhhhhhhhhdddhdddddmmmmmNNmmNMMMMMMMMMMNNNNNNNNmNNmmmmmmmmmmmmmmmmmNmmmmddddhddddddddddddddddddddddhhhhhddd
dddmmmmNNNNmmddhhhhyhhhhhhhhhhhdddddddmmmmmNNddNMMMMMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNmmmmmdddhdddddddddddddddddddddhhdddmmmmd
hhddddddmmmmNNNNmmmdhhyhhhhhhdhddddddddmmmmmmNNmNMMMMMMMMMMMMMMMMNNNNNNNNNNNNNNNNNmmmmmmmddddddddddddddddddddddddddddmmmmmddh
ddddddddhhhddddmmmNNmmmddhdddddddmddmmmmmmmmmmNNmNMMMMMMMMMMMMMMMMMMMMNNNNNNNNNmmdmmdmmddddhdddddddddddddmddddddddmmmmddhhhhh
mmmmNNmmmmmmmddddmmmmmmNmmmmmmmmmmmmmmmdhddmNNNNmNNNNMNNNNNMMMMMNNNNNMMNNNNNNmmmmmNmmmmdhhdmmdddmmmddhdmmmdddmmmmmmmmmhdhhhhh
ddddmd``````.-/hNN+```.m-`````````yNs:`   `./dNM````/N.```:MMMMMy```-NM-```NN````+Nmy:`   `./dmmm+.`   `:sNmNd``````-Ndhhhhhh
mmmmmd    :/   `mM/   `m/--    .--hs   `s/   `NM    /M`   :MmmmNy    oM-   NM    /My    o/   .NM-   -s`   omdo       myyhhhdd
dhhhdd    oN`   yM/   `mmmm    +MNM:   `My    hM    :N`   :Mddhdy    `d-   NM    /M+    Ns    dN    /M.   :mm:   -   sh/sssyd
hhhhdd    :+   -mN/   `mhdm    +NdN:   `Mh....hM    `-    :Mmmmmy     -.   NM    /M/    NmyyyyNN    /MyyyyhMN`   y   :Nososyd
dddddd    ``  .+mN/   `mhdm    +mhN:   `MmmmmNNM          :MmmmNy          NM    /M/   `h-----dN    /+----/Mh   .m`  `Nyssooh
mmmmNd    om`   +M/   `mddm    +NhN:   `Md++++dM    :h`   :MNNNMy   :`     NM    /M/   `d/    hN    +y.   -Mo   :d`   ydysshm
NNNNNd    oN`   :M/   `mmmm    +NdN/   `My    hM    /M`   :NyNNNy   +o     NM    /M+    Nh    hN    +M:   -M-         /mo+sdm
mmmmNd    -/    +M/   `NNNm    +NNNs   `s/   `NM    /M.   :m-smNy   +N.    NM    /My    o/    hM-   -y.   -N    -y-   .No+ohm
mmmmNd      ``./mM/   `NNNm`   +NNNNs-`    `/dhM` ` /M.   :m.-dNy   +My`   NM `` /dys-   `/.` dyd/`   ./``-y   `sMo   `dyoyhm
NNNNNNNNNNNNNNNNNNNNNNNNmmNmmmmmmmmdsyhyyyhhysydddddddhddhhh/:hNNmmmmmNmmmmNNmmsss+`-osssssssss:./sssyyddddmdmmNNmyyyhhdysddm

Name: Anonymous 2012-02-21 11:45

>>105
Now continue to look for the error you mental midget. I still don't think you see it, because like, well, you are a dumbass. Now fire back with another snide comment instead of trying to learn something you fucking dumb nigger.

Name: Anonymous 2012-02-21 11:47

>>106,108
you are so autistic it's funny

I literally can't stop farting

Name: Anonymous 2012-02-21 11:47

>>108
>>106
Oh look Kodak once again samefagging in order to sound right.

Now fire back with another snide comment
says the king of ad hominems.

Name: Anonymous 2012-02-21 11:48

>>107
You don't have the IQ to do something like that. The best you dumbass could do is either ask someone here for a bot and then modify to fit your needs. Because, again, for the millionth time, you are way too fucking stupid to write code.

Name: Anonymous 2012-02-21 11:49

>>111
Oh look more ad hominems.


Look at me guys, i'm such an elitist and so cool.

Programming is so hard xD You can't find a simple undefined behavior in some toy C program XD  you have no hope at programming.

Don't mind me just being a enterprise codemonkey with my a,b,c's java programming job

Name: Anonymous 2012-02-21 11:49

>>109
Maybe, but at the end of they you are still a dumbass who works a general labor job.

Name: Anonymous 2012-02-21 11:52

>>111

#include <stdio.h>
int main()
{
  int number_of_times_kodak_uses_an_ad_hominem;
  printf("You guys are all toilet scrubbers, i've been reminding you this for %d times now. When will you get it that you guys are scrubs and will never be part of the elitist club?",number_of_times_kodak_uses_an_ad_hominem);
}

Name: Anonymous 2012-02-21 11:53

>>112
I'm willing to bet you can't write an autotroller without the aid of google. I'm even going to take this one step further and say you don't even have the skill level to write a working one on your own in less than 30 minutes. Because again, you are kind of slow. Now shut up and go scrub another toilet.

Name: Anonymous 2012-02-21 11:55

>>115
++ad_hominems;


Keep em coming kodak. You just make yourself look like a immature child more and more.

Name: Anonymous 2012-02-21 11:55

>>114
That code will break if..

a)I run it on a linux box.

And

b)The underlying device is something other than a terminal.

Name: Anonymous 2012-02-21 11:57

Name: Anonymous 2012-02-21 11:58

>>116
I'm being serious. You say programming is easy. I bet you have zero clue how to write an autotroller. The best your slow ass could do is take some pre-existing code that someone else has written, and then modify it to fit your needs.

Name: Anonymous 2012-02-21 11:59

>>119
++ad_hominems;

Keep em coming child.

Name: Anonymous 2012-02-21 11:59

>>117
leave it to kodak to fail to spot the subtle troll

Name: Anonymous 2012-02-21 12:01

>>120
I'm just pointing out that you aren't skilled on any level. How is that being childisht you fucking moron? Man, I swear, most farm hicks aren't even as dumb as you.

Name: Anonymous 2012-02-21 12:02

>>122
oh look more ad hominems from the child who can't argue without spouting off insults like a immature baby

Name: Anonymous 2012-02-21 12:06

Daily Reminder that kodak_gallery_programmer!!kCq+A64Losi56ze no longer has a job since kodak gallery went bankrupt.

Name: Anonymous 2012-02-21 12:06

>>123
That's right, keep calling me a child in order to avoid the truth that you aren't a skilled programmer. Because you know that deep down inside you don't have what it takes to write an autotroller on your own without modifying someone elses code.

Name: Anonymous 2012-02-21 12:09

>>125
+1 ad hominem

What's worse is that you think i ever claimed i was a skilled programmer.


You can't even keep your topics straight without reverting to something else that you can insult.

Name: Anonymous 2012-02-21 12:12

>>117
without proof it's undefined

Name: Anonymous 2012-02-21 12:15

Of all the shitty tripfags to remain on /prog/... kodak.


            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 2012-02-21 12:19

>>126
Sorry, my bad. I forgot. You don't even know how to program!

Name: Anonymous 2012-02-21 12:19

>>129
And the topic changes again

Name: Anonymous 2012-02-21 12:21

Name: Anonymous 2012-02-21 12:25

>>130
Don't worry. Your mental midgetness is the universal constant in this tread.

Name: Anonymous 2012-02-21 12:28

It is fairly relaxed and a little silly.
Check the doubles. (^^;;

Name: Anonymous 2012-02-21 12:30

Maybe he's right, looking at how passionate all /prog/ endure such shitposting.

Name: Anonymous 2012-02-21 12:32

>>111
nice trips, check my dubs in base 134

Name: Anonymous 2012-02-21 13:13

>>39
I work for Google, we laughed our asses off when someone recommended Apache for a project. It's completely unfit for production.

Name: Anonymous 2012-02-21 13:18

Hey Kodak, this is your bi-monthly reminder that any subset of a countable set is also countable. Keep trying to pass Math 101 you fucking retard, you'll be able to define a subset if you practice a lot I'm sure.

Name: Anonymous 2012-02-21 13:42

>>136
I work for Google
How is this relevant? Does your job make your statements always true?

Name: Anonymous 2012-02-21 13:42

>>136
Lies. All lies.

Name: Anonymous 2012-02-21 13:46

>>138
How is this relevant?
Gee, I don't know, could it be related to this?

What do you do for a living?

Name: Anonymous 2012-02-21 13:51

>>117
It won't if the implementation is a conforming C implementation, stdout gets flushed at termination, and termination occurs right after the call to puts has finished.

Read the standard you stupid piece of shit.

Name: Anonymous 2012-02-21 14:02

>>140
Nothing, isn't that awesome?
Staying all day and night jailed in your awesome confortable rad G+hole? Thank you! I have different objectives for life, like, really living?

Name: Anonymous 2012-02-21 14:25

>>141
In this case, the code may or may not call fflush(). If it doesn't call fflush(), the behavior is undefined. Now shut up you dumbass.

Name: Anonymous 2012-02-21 14:28

>>141
Now given that fact that you're kind of dumb, I really don't expect you to actually understand the passages. I mean fuck, I bet you got C's and B's in your classes when attending your hick school. And you know why this is? Because you have a low IQ. Now do you really expect that you could magically understand something that is more difficult? Exactly. Now fuck off you no talent bitch.

Name: Anonymous 2012-02-21 14:37

Hey Kodak-kun, I just got out of my Computer hardware and assembly lecture.

You jelly?

Name: Anonymous 2012-02-21 14:37

>>145
Totally.

Name: Anonymous 2012-02-21 14:40

shit projects like Apache?
Why? OK, let's say 90%, but all of them? OP, you better contribute to Apache Cassandra you mainstream piece of shit.

Name: Anonymous 2012-02-21 15:07

>>143
but kodak-san,my compiler adds a fflush() in automatically at the end of main function

Name: Anonymous 2012-02-21 17:58

This thread: so C++... so angry

Name: Anonymous 2012-02-21 20:21

Oh, you think you're doing some damage? Two plus two is… ten. In base four! I'm fine!

Name: Anonymous 2012-02-22 9:05

>>143
It always does you stupid piece of shit.
Read the fucking standard.

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