convert char array to char * c code example
Example 1: how to covert array into a char
String s="Welcome to Java Programming";
char arr[]=s.toCharArray();
for(int i=0;i<arr.length;i++){
System.out.println("Data at ["+i+"]="+arr[i]);
}
Example 2: how to feed a char array to function in C
//If you know the size of the array you can pass it like this
void function(char array[10]) {
//Do something with the array...
}
int main() {
char array[] = {'a', 'b', ..., 'j'};
function(array);
}