compound assignment operators

This commit is contained in:
pommicket 2022-02-13 10:06:41 -05:00
parent 07faf56f7d
commit 6b42f4198f
3 changed files with 212 additions and 2 deletions

View file

@ -12,7 +12,8 @@ long fibonacci(long x) {
}
int main(int argc, char **argv) {
long (*fp)(long) = factorial;
return (*fp)(6);
int x = 104;
x >>= 3;
return x;
}