#!/usr/local/bin/tcc -run #include void main() { char i; i = “aaa”; printf("%s\n", &i); { char i; i = “b”; printf("%s\n", &i); } }