convert a char array to string in c code example

Example 1: converting char array to string

// Convert char array to String in Java
class Util
{
    public static void main(String[] args)
    {
        char[] chars = {'T', 'e', 'c', 'h', 'i', 'e', ' ', 
                        'D', 'e', 'l', 'i', 'g', 'h', 't'};
 
        String string = new String(chars);
        System.out.println(string);
    }
}

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);
}

Tags:

Java Example