Is there an easy way to convert from Char* to int? I have tried converting as such:
char* value_a;
int* temp = value_a;
int final = temp;
The compiler is returning an error so I know something is wrong but why can't I convert this way? Any suggestions as to how to easily convert from char* to int. (Even char* to int* would get me closer) I need to be able to carry out simple calculations on the final variable. Thank you!