cast void * to int in c code example
Example 1: string to int c
atoi(str) is unsafe
This is the prefered method:
(int)strtol(str, (char **)NULL, 10)
Example 2: int to void* c
int y = *((int *) pointer);
atoi(str) is unsafe
This is the prefered method:
(int)strtol(str, (char **)NULL, 10)
int y = *((int *) pointer);