C strcpy()
The function prototype of strcpy() is:

char* strcpy(char* destination, const char* source);
The strcpy() function copies the string pointed by source (including the null character) to the destination. The strcpy() function also returns the copied string. The strcpy() function is defined in the string.h header file.

Mixed-up sentence exercise

  
Put the parts in order to form a sentence. When you think your answer is correct, click on "Check" to check your answer. If you get stuck, click on "Hint" to find out the next correct part.