Hacker News new | ask | show | jobs
by robotresearcher 3076 days ago
I was assuming C, where there is a difference.

int main() { printf( "%d %d\n", 'A', "A" ); return 0; }

produces: 65 197730221

since the value of string "A" is its base address.