# Introduction In this challenge, you will learn how to copy the contents of an array in C programming. In C, you cannot directly copy and compare array names using the assignment operator (=). Instead, you need to use the standard library function `strcpy` to perform the copying. The objective of this challenge is to write a C program that uses `strcpy` to copy the contents of one array to another, and then determine whether the two input values are equal.
Click the virtual machine below to start practicing