C program

profilehzxlove
lab3.zip

lab3/grammar-story.txt

animal:cat,emu,okapi emotion:happy,sad,elated,curious,sleepy color:red,green,blue name:emily,luis,otavio,anna,charlie character:#name# the #adjective# #animal# place:school,the beach,the zoo,Burning Man adjective:#color#,#emotion#, origin:once #character# and #character# went to #place#

lab3/tracery_recursion.c

#include <stdio.h> #include <stdlib.h> char* make_string_from(char* from, int count) { /* TODO 2 */ return NULL; /* TODO 2 */ } int main(int argc, char** argv) { /* TODO 1 */ /* TODO 1 */ /* TODO 3 */ /* TODO 3 */ }