int main() { printf( "%d %d\n", 'A', "A" ); return 0; }
produces: 65 197730221
since the value of string "A" is its base address.
int main() { printf( "%d %d\n", 'A', "A" ); return 0; }
produces: 65 197730221
since the value of string "A" is its base address.