These are sample questions that are very similar to the ones I will ask on the midterm. The midterm will be about an hour long (but you can take the full class period if you like).
void mystrcpy(char *s, char *t)
{
while(*t != ’\0’)
*s++ = *t++;
*t = ’\0’;
}
|
ECS 153, Computer Security Version of April 23, 2016 at 8:36PM |