C++ Jokes (new)

Pages: 12
Please post your jokes about C++ here!
1
2
3
4
5
6
7
8
9
#include <cstdio>
void tellStory(){
printf("Once there was a very famous building. \n");
printf("An actor was living in it. \nHe was telling stories.\n");
printf("The story was like this: \n\b"); tellStory();
}
int main(){
tellStory();
}
Last edited on
No matter which one you input, the result will still be 1.

1
2
3
4
5
6
7
8
9
10
#include <iostream>
using namespace std;
int main(){
bool to_be;
int question;
cin >> to_be;
question=( to_be ) || (! to_be );
// To be OR NOT To be, that is a question.
cout << question;
}
Last edited on
The C spilled his beer all over the C++'s shirt. Outraged, C++ shouted, "Good god, man! Have you no class?"
From http://www.cplusplus.com/forum/lounge/52821/#msg286245:
Cherapy wrote:
C++, where your pointers dangle and friends get to play with your private members.
Last edited on
...so I said to the bartender "Make it a double".
zaphraud walks into a bar and asks for 1.014 root beers.
The bartender says, “I’ll have to charge you extra, that’s a root beer float”.

^insert before
nice! ^5
C++ knocks on Java's door. After waiting a few minutes, C++ leaves and comes back the next day where Java opens the door as soon as C++ appears. C++, impressed, asks, "How did you know I was here?" Java replies,"Didn't you just knock?"
Haha! Isn't ^ a variation of the more common:

"Knock Knock"
"Who's there?"
*very long pause*
"Java"
Yea, it is! I wanted to make that joke a bit more sophisticated.
Hi everyone...
There is one joke I basically found on Amazone and after joyfully reading all the other Threads cannot wait to Share :)

(I hope this works - it is on a T-Shirt afterall...)

http://a.co/eTQ8Mne

Edit: sorry, it‘s just the Link to the Shirt... I am not too used to type forum-texts and pic-inclusion did not work out for me... today... :(
Last edited on
Knock Knock
Race Condition
Who's there?
https://www.google.com/search?q=recursion

I like @ntchambers's post.
Last edited on
All PJ`s.....xD
Knock Knock strange joke.
closed account (E0p9LyTq)
Programmer (noun)

A machine that turns coffee into code.
closed account (E0p9LyTq)
Algorithm (noun)

Words used by a programmer when....

they don't want to explain what they did.
closed account (E0p9LyTq)
Q: What is the Object-oriented way to become wealthy?

A: Inheritance.
closed account (E0p9LyTq)
Chuck Norris writes code....

that optimizes itself.
Pages: 12