Search Results

2
votes

Stack overflow code golf

a{return a*a;}; Compile with: gcc -D"a=main()" so.c Expands to: main() { return main()*main(); } …
1
vote

Doesn’t the ability to cast defeat the purpose of typed variables?

Yes, strong types allow the compiler to do lots of checks for you. No, allowing casting doesn't stop that being useful. The point is that the rare occasions when you need to do a cast, it …