#!/usr/local/bin/tcc -run #include void main(){ char tmp = 0; tmp ~= tmp; printf("%d\n", tmp); tmp ~= tmp; printf("%d\n", tmp); }