Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: forcing float arithmetic.
- X-seq: zsh-users 26594
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Roman Perepelitsa <roman.perepelitsa@xxxxxxxxx>
- Cc: Ray Andrews <rayandrews@xxxxxxxxxxx>, Zsh Users <zsh-users@xxxxxxx>
- Subject: Re: forcing float arithmetic.
- Date: Wed, 24 Mar 2021 14:59:23 -0700
- Archived-at: <https://zsh.org/users/26594>
- Archived-at: <http://www.zsh.org/sympa/arcsearch_id/zsh-users/2021-03/CAH%2Bw%3D7bOsdz17cfXTbNbwYXTJW_M9r67BnqVbNqkATZcU31%3DeQ%40mail.gmail.com>
- In-reply-to: <CAN=4vMq_i_FDqLbnVtZdbPEb3M58qoDdFzvf8mpQJQomtZLjHQ@mail.gmail.com>
- List-id: <zsh-users.zsh.org>
- References: <f09863a2-0af9-dbff-08b9-6f595cd7e164@eastlink.ca> <CAH+w=7YJSqb+twS1X60LoJgVD95hAnJK3AAL6cA9tcafH2gqUg@mail.gmail.com> <aa6c84af-5a8c-e52a-ccb3-6a666ca2553c@eastlink.ca> <CAN=4vMq_i_FDqLbnVtZdbPEb3M58qoDdFzvf8mpQJQomtZLjHQ@mail.gmail.com>
On Wed, Mar 24, 2021 at 2:54 PM Roman Perepelitsa
<roman.perepelitsa@xxxxxxxxx> wrote:
>
> The behavior of zsh in this regard is consistent with C and all languages inspired by it (C++, Java, C# and many, many others). This is really working as intended.
Proof:
#include <stdio.h>
void main() {
int x = 3, y = 7;
float z = (x/y);
printf("%g\n", z);
}
Messages sorted by:
Reverse Date,
Date,
Thread,
Author