multiplication and division

This commit is contained in:
pommicket 2022-02-12 16:57:40 -05:00
parent 8b68a433ff
commit d44625524a
3 changed files with 130 additions and 15 deletions

View file

@ -1,18 +1,4 @@
static char x = -2;
typedef struct {
int x;
char y;
long z;
long q;
} Structure;
Structure a = {1,2,3,-4};
long main(int argc, char **argv) {
Structure a = {1,2,3,4};
int x = 100;
a;a;a;a;a;
x = x + x, x = x + 2;
return x;
return ((float)1 / (float)3) * (float)3;
}