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