CS 3733 Operating Systems, Fall 2006 Assignment 3 Comments

This assignment was graded on a basis of 30 points.

Testing

What is wrong with the following:


char * makepath(char *dir, char *name) {
   int length = strlen(dir) + strlen(name) + 2;
   char temp[length];
   strcpy(temp,dir);
   strcat(temp,"/");
   strcat(temp,name);
   return temp;
}