MARIE exercise Write code to copy an input array to an output array in memory. Refer to the UNICODE 16 example code on how to do pointers. Example C code to simulate in MARIE: // input string to be copied char *input = "copy this" char *input_ptr = input ; char output_str[10] ; char *output_ptr = output_str ; while ( *input_ptr != '\0' ) { *output_ptr = *input_ptr++ ; printf( "%c", *output_ptr++ ) ; // use output to unicode output window to see the copy this string } halt Submit to the myCourses assignment folder "Marie Copy"