Suppose I were to write the following code: int *p = malloc(sizeof(int) * 10); int *q; q = p + 1; free(q); Will calling free with argument q...
Separate names with a comma.