#include <stdio.h>

/* Terry Harvey CISC105 Section 21 TA Aaron*/

/* Sample program for class */

int main(){

    char a[10];
    char* b = (char*)calloc(10, sizeof(char));

    strcpy(a, "cats");
    strcpy(b, "cats"); //?????

    return 0;
}
