According to syntax postfix increment returns copy of unmodified variable (C++ == C), while prefix increment returns incremented variable (++C == C + 1).

  • j4k3@lemmy.world
    link
    fedilink
    English
    arrow-up
    27
    ·
    9 days ago

    Cpp

    ++C would make the language totally irrelevant in alphanumeric listings of languages

    After simply managing a point of sale system for a retail chain, I hate you for even suggesting this./s It is almost as bad as all the insane ideas about date notation. The only correct notation is YYYY/MM/DD.

    • LambdaRX@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      22
      arrow-down
      9
      ·
      edit-2
      9 days ago

      ISO 8601 is good for computers, but as a human i prefer DD/MM/YYYY, which is more convenient for everyday use. USA format is abomination though.

        • Aatube@kbin.melroy.org
          link
          fedilink
          arrow-up
          3
          arrow-down
          2
          ·
          9 days ago

          But when you wanna figure out what day it is, usually the month doesn’t change. I love ISO 8601 as much for programming and sorting as much as the next person, but for close dates for humans, DMY is still pretty good.

          • hddsx@lemmy.ca
            link
            fedilink
            arrow-up
            1
            ·
            9 days ago

            No it’s not. Only care about the date in month? Just say the date. Do you care about the month too? Month Day is your answer. Do you care about the full date? Add on the year

            • Aatube@kbin.melroy.org
              link
              fedilink
              arrow-up
              2
              ·
              9 days ago

              Saying it out loud and using a worded date in this order is what I mean. English simply does not support “Twenty Twenty-four September Twenty” or “2024 September 20”.

      • TranquilTurbulence@lemmy.zip
        link
        fedilink
        arrow-up
        3
        ·
        9 days ago

        Many people are ahead used to the DD.MM.YYYY format. They are also already totally ok with the hh:mm:ss format so apparently there’s no problem ascending or descending order. Inconsistency really bothers me, so we should just pick one and stick with it. Preferably the ISO style, if you ask me.

  • milicent_bystandr@lemm.ee
    link
    fedilink
    arrow-up
    11
    ·
    9 days ago

    Nah, because when you write it it’s just C, but when you come back later to check your code it’s gotten bigger and more obfuscated.

  • Rade0nfighter@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    9 days ago

    PHP should stand for “Pre Hypertext Processor”.

    Instead of being a recursive acronym for “PHP: Hypertext Preprocessor”.

  • Blue_Morpho@lemmy.world
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    9 days ago

    ???

    If c = 1, then c++ = 2

    #include <iostream> using namespace std;

    int main() {

    int i = 10;

    cout << i++ << endl;

    cout << i << endl;

    }

    postfix ++ increments the variable.

  • givesomefucks@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    3
    ·
    9 days ago

    First there was C

    Then C+, and no one gave a shit, so they made C++

    It’s just C with stuff added to it twice.

  • atro_city@fedia.io
    link
    fedilink
    arrow-up
    2
    ·
    9 days ago

    The fediverse really is filled with programmers… that nearly looks like math but the type I learned at school.