> On Sep 1, 2023, at 12:35 PM, Tomas Bortoli via Gcc wrote:
>
> Hi,
>
> I recently discovered that the following C statement:
>
> pointer++;
>
> is semantically equivalent to the following:
>
> *pointer++;
>
> Is this due to operators' priority? To me, that looks weird.
Yes, https://en.c
On Fri, Sep 1, 2023 at 12:37 PM Tomas Bortoli via Gcc
wrote:
> Hi,
>
> I recently discovered that the following C statement:
>
> pointer++;
>
> is semantically equivalent to the following:
>
> *pointer++;
>
> Is this due to operators' priority? To me, that looks weird.
>
Equivalent in the effect
Hi,
I recently discovered that the following C statement:
pointer++;
is semantically equivalent to the following:
*pointer++;
Is this due to operators' priority? To me, that looks weird.
Thanks in advance,
Tomas