Data Type C

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