compound assignment operators
This commit is contained in:
parent
07faf56f7d
commit
6b42f4198f
3 changed files with 212 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue