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.
void mystrcpy(char *s, char *t)
{
while(*t != ’\0’)
*s++ = *t++;
*t = ’\0’;
}
|
ECS 153, Computer Security Version of October 27, 2019 at 9:50PM
|
You can also obtain a PDF version of this. |