C, how is a string cast into a int?# Programming - 葵花宝典
M*m
1 楼
char *a = "12";
int j = (int)a;
j is 134514482, what is going on here? how does c convert "12" to this
number?
int j = (int)a;
j is 134514482, what is going on here? how does c convert "12" to this
number?