How to convert a char * to char.
I have a char pointer
char * Data which gets some value
I also have a variable
char result;
Can I do
result = *(Data)?
If I do so its throwing me a null pointer assignment.
I want to store the values in an array of result for different values of "Data" in a loop.