Code Snippets C

#include
int main(void)
{
short x;
x = 1;
x = x | 32768;
printf("%hd", x);
return 0;
}