when will i ever use pointers and references in a real coding job?

when will i ever use pointers and references in a real coding job? seems like useless academic bullshit like the rest of college

POSIWID: The Purpose Of A System Is What It Does Shirt $21.68

Black Rifle Cuck Company, Conservative Humor Shirt $21.68

POSIWID: The Purpose Of A System Is What It Does Shirt $21.68

  1. 2 years ago
    Anonymous

    You'll never have a coding job so you needn't worry.

  2. 2 years ago
    Anonymous

    You will only use this kind of shit in a coding job that requires you to write very performant code. No, writing websites backend doesn't require very performant code.

    • 2 years ago
      Anonymous

      This must be bait...

      No lol it doesn't have to be "very performant code".
      If you have any C or C++ codebase then even a simple string input that you get from the user is going to come as a pointer or as a reference.

      • 2 years ago
        Anonymous

        lol.
        lmao even.
        My point was: No one is going to use C/C++ for simple things that can be done with Python/Java/PHP

        • 2 years ago
          Anonymous

          >No one is going to use C/C++ for simple things that can be done with Python/Java/PHP
          try blinking LEDs with Python

          • 2 years ago
            Anonymous

            That's not a "simple thing that can be done with Python/Java/PHP", and embedded code DO need to be performant, after all you don't have much processing power to spare.

          • 2 years ago
            Anonymous

            bad example because micropython is a thing and it's possible, that being said yeah op is bait this thread is dumb

  3. 2 years ago
    Anonymous

    you will need to use pointers for roughly 50% of all the variables you make once you start writing programs that aren’t small uni assignments. unless of course you’re a webdev in which case kys loser. Better to learn smart pointers now if you’re serious about programming

  4. 2 years ago
    Anonymous

    If you're asking that question then you shouldn't be using any programming language that has pointers or for which by-reference vs by-value isn't handled by the language syntax. If you get hired by a company using such a language then you're a ticking time bomb.

  5. 2 years ago
    Anonymous

    C++ programmer here, I use pointers every day.

    You need to understand how memory works even if you aren't doing raw ptr math.

    Unless you're doing 100% managed scripting.

  6. 2 years ago
    Anonymous

    Tell me you're moronic without telling me you're moronic.

  7. 2 years ago
    Anonymous

    >when will i ever use pointers and references in a real coding job? seems like useless academic bullshit like the rest of college
    You'll use them all the time in Lisp and Python. You probably think pointers mean C's * syntax instead of pointers.

  8. 2 years ago
    Anonymous

    Never, real world unly uses values because it's all functional

  9. 2 years ago
    Anonymous

    Why is she spreading her legs like that?

    • 2 years ago
      Anonymous

      Because I amger

  10. 2 years ago
    Anonymous

    You'll definitely use pointers if you're writing in C/C++. If you're using something like C# you'll probably also end up using references if you want your code to perform well. Passing a copy of a struct to a function is a big waste of cycles when you can just pass a reference to it for example.

  11. 2 years ago
    Anonymous

    You'll use them daily.

    You'll use switches and references too, constantly.

    Dealing with legacy code? It will use pointers and references too.

    You gotta know your switches, your classes, your pointers, your objects, etc etc. All of that you use.

    Calculus? Pay attention there too, it will help with your coding.

    Want to do anything involving graphics apis, shaders, or even moving into cyber security doing buffer overflows? Guess what, you need pointers. Want to make a program that hooks into a legacy program as a plugin? You use pointers.

    That academic bullshit you see is used every day out in the real world.

  12. 2 years ago
    Anonymous

    Try making a CRUD system in C.

  13. 2 years ago
    Anonymous

    Let’s say you’re manipulating a large piece of data and you need to pass it to multiple functions, your should use pointers or pass by reference otherwise you’re making a copy of that data every time it gets passed to your functions which is incredibly stupid considering the amount of time it takes to simply write * or &

  14. 2 years ago
    Anonymous

    >seems like useless academic bullshit like the rest of college
    You will never be a real programmer

Your email address will not be published. Required fields are marked *