#!/usr/local/bin/tcc -run void main(){ int i = 1; printf("%d\n", i); i = !i; printf("%d\n", i); i = !i; printf("%d\n", i); }