#!/usr/local/bin/tcc -run #include struct a {char a, b, c;} void main(){ struct a x; x.a='A'; x.b='B'; x.c='C'; }