Hacker News new | ask | show | jobs
by everslick 1660 days ago
what's wrong with that?
3 comments

  *a++
doesn’t increment the value pointed to by `a`, it increments `a` itself. The value remains intact.

   int increment(a)

   {
      return a+1;
   }

   void somefunc()

   {
       int b = 5;

       b = increment(b);

       printf("b now %d\n", b);
   }
that exact example is given in the document and presented as 1 of 2 possible solutions. I believe, the critique in the parent comment was unwarranted, but I thought I maybe missed something.
This is the only proper way of doing that. Having pointers to variables on input that functions modify is ugly and error prone. C gets a lot better the moment you try to make your functions as pure as you can.
What do you think of

  T get_t(int how, char **error);
  int get_val(T *v);
One could rewrite these as

  struct get_t_res {T; char *};
  struct get_t_res get_t(int);

  struct get_val_res {int; T};
  struct get_val_res get_val();
But what do you think of it?
Less clear. I much prefer for functions to do what's on the tin in the most simple way possible.
As long as you don't return structs, as the compiler may introduce memcpys here. C doesn't have C++'s RVO, last time I checked many cases that GCC and Clang did optimize in C++ weren't optimized in C.
True, but still one way I appreciate making C safer is by using poor man's Abstract Data Types with translation units.

For the use cases that are too expensive to use functions, macros can be used instead.

However that is only if C++ cannot be used at all, otherwise don't bother.

That works, at the expense of possibly hiding bugs in plain sight. Macros are a double edged sword in that sense, you can almost but not quite create a DSL on top of C that is a lot more safe but it has its drawbacks, and you need to be very good at mentally modeling macro expansion to read and debug code like that in order to ensure that it does what it seems to be saying that it will do.
Do you have an example of that where C++ struct returns are optimized but not C ones?
enjoy: https://gcc.godbolt.org/z/7Pn8eqhdK

that's latest GCC, at -O3

Should be `(*a)++`

Noob mistake