What is the command used to create the folder child, as well as the parent folder, parent/child?
A) mkdir parent/child
B) mkdir -p parent/child
C) mkdir parent && mkdir parent/child
D) mkdir -p parent && mkdir parent/child