#!/usr/local/bin/tcc -run #include main() { struct {int a, b;} w; w.a = 2; w.b = 3; printf("%d\n", w.a * w.b); }