9 lines
98 B
C
9 lines
98 B
C
#include <stdio.h>
|
|
|
|
void main(void)
|
|
{
|
|
short num = 2;
|
|
num = !-2;
|
|
printf("%hd", num);
|
|
|
|
} |