Name: Anonymous 2012-12-02 18:13
Hey /prog/, did you know that you can do this in C:
It's been 6 years since I started writing C and I only now found out. From a fucking C++ book.
int fun(); /* Whoops, we forgot ``void'' */
int main(int arg, char **argv)
{
fun(fun, fun, "the Sussman", fun, fun, fun, (int)fun + (int)fun);
return fun(3, 3, 3);
}
int fun()
{
return 3;
}It's been 6 years since I started writing C and I only now found out. From a fucking C++ book.