mirror of
https://github.com/github/codeql.git
synced 2026-04-03 14:18:17 +02:00
15 lines
111 B
C
15 lines
111 B
C
void f() {
|
|
int i;
|
|
&i;
|
|
|
|
-i;
|
|
//+i
|
|
~i;
|
|
!i;
|
|
|
|
i++;
|
|
i--;
|
|
++i;
|
|
--i;
|
|
}
|