Mega Code Archive
Categories
/
C
/
Code Snippets
Use bitwise or
#include
int main(void) { short x; x = 1; x = x | 32768; printf("%hd", x); return 0; }