My attempt is a screw up. I dont know where to set the size of the arrays. I dont know how to use functions properly either.
#include <stdio.h>
void copyArray (int srcArray[], int srcSize, int dstArray[], int dstSize);
int main(int argc, char **argv) {
int i = 0;
int srcSize;
int...