This likely an easy question but how can I convert a c String to a char[i] array? Most answers I am seeing are for C++, but I am looking for an answer for a c String. For example:
String latitude = "30.111111";
char latitudec[10];
I want latitudec to have the same value as latitude here
This is a valid question and I can tell you that you won't like my answer. But I am interested in understanding what I am missing here. That is simply how to convert a c String to a char array