int square(int x) { return x * x; } int main() { int x; x = square(9);// 81 e:goto e; return x; }