cbc/test/charops.cb

19 lines
247 B
Plaintext

import stdio;
int
main(int argc, char **argv)
{
char i = 1;
i <<= 1;
printf("%hhd", i);
i <<= 5;
printf(";%hhd", i);
i <<= 1;
printf(";%hhd", i);
i <<= 1;
printf(";%hhd", i);
puts("");
return 0;
}