You have to hook it up to a computer, access iTunes and wipe it in settings so you can put in new account info
Answer:
#include <stdio.h>
int main(void) {
char letterToQuit = '?';
int numPresses = 0;
printf("Press the %c key %d times to quit ", letterToQuit, numPresses);
return 0;}
Explanation:
in print statement %c is replaced by value of variable 'letterToQuit'and %d is replaced by value of variable 'numPresses'
The answer & explanation for this question is given in the attachment below.
Okay what do you need to know