this post was submitted on 20 Sep 2024
92 points (90.4% liked)
Showerthoughts
29666 readers
1249 users here now
A "Showerthought" is a simple term used to describe the thoughts that pop into your head while you're doing everyday things like taking a shower, driving, or just daydreaming. A showerthought should offer a unique perspective on an ordinary part of life.
Rules
- All posts must be showerthoughts
- The entire showerthought must be in the title
- Avoid politics
- NEW RULE as of 5 Nov 2024, trying it out
- Political posts often end up being circle jerks (not offering unique perspective) or enflaming (too much work for mods).
- Try c/politicaldiscussion, volunteer as a mod here, or start your own community.
- Posts must be original/unique
- Adhere to Lemmy's Code of Conduct-----
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
???
If c = 1, then c++ = 2
#include using namespace std;
int main() {
int i = 10;
cout << i++ << endl;
cout << i << endl;
}
postfix ++ increments the variable.
Postfix increments variable too, but as a side effect. in your code
cout << i++ << endl;
prints 10 which means, that i++ returned copy of unincremented i.Yes c++ == c. That's the point Bjarne Stroustrup made. It is the C language but then it's better.
Nowadays they're not completely compatible. But originally it was a preprocessor that created the C equivalent to be compiled. You could write C++ that compiled with a C compiler as long as you didn't use the extra features.
Yeah.
Perhaps ++C == Java or something.
I'm sure that's offensive to some, so apologies for airing the thought.